Messenger Check is a Python-based program designed to process a list of phone numbers, verify their existence on messaging platforms such as Telegram and WhatsApp, and store the results in a structured JSON file. In case of a large dataset of phone numbers the program adheres to incremental processing of data without excessive memory consumption.
git clonevenvpip install -r requirements.txt
- Whatsapp and Telegram accounts.
- go to https://green-api.com/ and https://my.telegram.org/ to obtain
api_id, api_hash, api_url. - open main.py and put your parameters to the corresponding variables.
- put the phone numbers, one per raw, in
target_list.csv.
1) target_list.csv must be in the same directory as a main.py .
2) to start a program run $ python3 main.py.
3) after the program is finished the results.json will appear in the program directory.
- Whatsapp API instance developer tariff has limitations of 100 requests per month.
- Checked phone numbers by Telegram will be added to contacts of account you use.
target_list.csvmust not be renamed (unless you code).
This project is licensed under the MIT License. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.