telegram-phone-number-checker


Nametelegram-phone-number-checker JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://github.com/bellingcat/telegram-phone-number-checker
SummaryCheck if phone numbers are connected to Telegram accounts.
upload_time2024-03-05 15:14:31
maintainer
docs_urlNone
authorBellingcat
requires_python>=3.9,<4.0
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # telegram-phone-number-checker

Python tool/script to check if phone numbers are connected to Telegram accounts. Retrieving username, name, and IDs where available.

## Installation

[![PyPI - Version](https://img.shields.io/pypi/v/telegram-phone-number-checker)
](https://pypi.org/project/telegram-phone-number-checker/)

You can install this tool directly from the [official pypi release](https://pypi.org/project/telegram-phone-number-checker/).

```bash
pip install telegram-phone-number-checker
```

You can also install it and run it directly from GitHub as a script.
```bash
git clone https://github.com/bellingcat/telegram-phone-number-checker
cd telegram-phone-number-checker
pip install -r requirements.txt
python telegram-phone-number-checker/main.py
```

## Requirements
To run it, you need:

1. A Telegram account with an active phone number;
2. Telegram `API_ID` and `API_HASH`, which you can get by creating a developers account at https://my.telegram.org/. Place these values in a `.env` file, along with the phone number of your Telegram account:

```
API_ID=
API_HASH=
PHONE_NUMBER=
```
If you don't create this file, you can also provide these 3 values when calling the tool, or even be prompted for them interactively.

## Usage
The tool accepts a comma-separated list of phone numbers to check, you can pass this when you call the tool, or interactively.

See the examples below:

```bash
# single phone number
telegram-phone-number-checker --phone-numbers +1234567890

# multiple phone numbers
telegram-phone-number-checker --phone-numbers +1234567890,+9876543210,+111111111

# interactive version, you will be prompted for the phone-numbers
telegram-phone-number-checker

# overwrite the telegram API keys in .env (or if no .env is found)
telegram-phone-number-checker --api-id YOUR_API_KEY --api-hash YOUR_API_HASH --api-phone-number YOUR_PHONE_NUMBER --phone-numbers +1234567890
```

The result will be written to the console but also written as JSON to a `results.json` file, you can write it to another file by adding `--output your_filename.json` to the command.

For each phone number, you can expect the following possible responses:

1. If available, you will receive the Telegram Username, Name, and ID that are connected with this number.
2. 'no username detected'. This means that it looks like the number was used to create a Telegram account but the user did not choose a Telegram Username. It is optional to create a Username on Telegram.
3. 'ERROR: no response, the user does not exist or has blocked contact adding.': There can be several reasons for this response. Either the phone number has not been used to create a Telegram account. Or: The phone number is connected to a Telegram account but the user has restricted the option to find him/her via the phone number.
4. Or: another error occurred.


## Development 
This section describes how to install the project in order to run it locally, for example if you want to build new features.

```bash
# clone the code
git clone https://github.com/bellingcat/telegram-phone-number-checker

# move into the project's folder
cd telegram-phone-number-checker
```

This project uses [poetry](https://python-poetry.org/) to manage dependencies. You can install dependencies via poetry, or use the up-to-date [requirements.txt](requirements.txt) file.

```bash
# install poetry if you haven't already
pip install poetry

# with poetry
poetry install

# with pip
pip install -r requirements.txt
```

You can then run it with any of these:
```bash
# with poetry
poetry run telegram-phone-number-checker

# with pip installation
python3 telegram_phone_number_checker/main.py
```
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/bellingcat/telegram-phone-number-checker",
    "name": "telegram-phone-number-checker",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9,<4.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Bellingcat",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/9d/e4/1f159424b4f3e24710bce20c0f2f4d585981acaa42469bf934abc8f36f1c/telegram_phone_number_checker-1.1.0.tar.gz",
    "platform": null,
    "description": "# telegram-phone-number-checker\n\nPython tool/script to check if phone numbers are connected to Telegram accounts. Retrieving username, name, and IDs where available.\n\n## Installation\n\n[![PyPI - Version](https://img.shields.io/pypi/v/telegram-phone-number-checker)\n](https://pypi.org/project/telegram-phone-number-checker/)\n\nYou can install this tool directly from the [official pypi release](https://pypi.org/project/telegram-phone-number-checker/).\n\n```bash\npip install telegram-phone-number-checker\n```\n\nYou can also install it and run it directly from GitHub as a script.\n```bash\ngit clone https://github.com/bellingcat/telegram-phone-number-checker\ncd telegram-phone-number-checker\npip install -r requirements.txt\npython telegram-phone-number-checker/main.py\n```\n\n## Requirements\nTo run it, you need:\n\n1. A Telegram account with an active phone number;\n2. Telegram `API_ID` and `API_HASH`, which you can get by creating a developers account at https://my.telegram.org/. Place these values in a `.env` file, along with the phone number of your Telegram account:\n\n```\nAPI_ID=\nAPI_HASH=\nPHONE_NUMBER=\n```\nIf you don't create this file, you can also provide these 3 values when calling the tool, or even be prompted for them interactively.\n\n## Usage\nThe tool accepts a comma-separated list of phone numbers to check, you can pass this when you call the tool, or interactively.\n\nSee the examples below:\n\n```bash\n# single phone number\ntelegram-phone-number-checker --phone-numbers +1234567890\n\n# multiple phone numbers\ntelegram-phone-number-checker --phone-numbers +1234567890,+9876543210,+111111111\n\n# interactive version, you will be prompted for the phone-numbers\ntelegram-phone-number-checker\n\n# overwrite the telegram API keys in .env (or if no .env is found)\ntelegram-phone-number-checker --api-id YOUR_API_KEY --api-hash YOUR_API_HASH --api-phone-number YOUR_PHONE_NUMBER --phone-numbers +1234567890\n```\n\nThe result will be written to the console but also written as JSON to a `results.json` file, you can write it to another file by adding `--output your_filename.json` to the command.\n\nFor each phone number, you can expect the following possible responses:\n\n1. If available, you will receive the Telegram Username, Name, and ID that are connected with this number.\n2. 'no username detected'. This means that it looks like the number was used to create a Telegram account but the user did not choose a Telegram Username. It is optional to create a Username on Telegram.\n3. 'ERROR: no response, the user does not exist or has blocked contact adding.': There can be several reasons for this response. Either the phone number has not been used to create a Telegram account. Or: The phone number is connected to a Telegram account but the user has restricted the option to find him/her via the phone number.\n4. Or: another error occurred.\n\n\n## Development \nThis section describes how to install the project in order to run it locally, for example if you want to build new features.\n\n```bash\n# clone the code\ngit clone https://github.com/bellingcat/telegram-phone-number-checker\n\n# move into the project's folder\ncd telegram-phone-number-checker\n```\n\nThis project uses [poetry](https://python-poetry.org/) to manage dependencies. You can install dependencies via poetry, or use the up-to-date [requirements.txt](requirements.txt) file.\n\n```bash\n# install poetry if you haven't already\npip install poetry\n\n# with poetry\npoetry install\n\n# with pip\npip install -r requirements.txt\n```\n\nYou can then run it with any of these:\n```bash\n# with poetry\npoetry run telegram-phone-number-checker\n\n# with pip installation\npython3 telegram_phone_number_checker/main.py\n```",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Check if phone numbers are connected to Telegram accounts.",
    "version": "1.1.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/bellingcat/telegram-phone-number-checker/issues",
        "Homepage": "https://github.com/bellingcat/telegram-phone-number-checker",
        "Repository": "https://github.com/bellingcat/telegram-phone-number-checker"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80c4ed634b64f835161f930c367589749d6aa18565774c02097beb56d97092fb",
                "md5": "734d37d00a0dc1ca5b5cfed72f974ce4",
                "sha256": "2eb1efc8f033535ae7f3ea9c615ab404249150820d54383a245473653542d567"
            },
            "downloads": -1,
            "filename": "telegram_phone_number_checker-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "734d37d00a0dc1ca5b5cfed72f974ce4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9,<4.0",
            "size": 6385,
            "upload_time": "2024-03-05T15:14:30",
            "upload_time_iso_8601": "2024-03-05T15:14:30.337134Z",
            "url": "https://files.pythonhosted.org/packages/80/c4/ed634b64f835161f930c367589749d6aa18565774c02097beb56d97092fb/telegram_phone_number_checker-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9de41f159424b4f3e24710bce20c0f2f4d585981acaa42469bf934abc8f36f1c",
                "md5": "f6bd10b0a0439db9ee472816490d035c",
                "sha256": "be33d5b1deb7823432e473ed7716549e610bd208c0709b86f22543a58ccc87fa"
            },
            "downloads": -1,
            "filename": "telegram_phone_number_checker-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f6bd10b0a0439db9ee472816490d035c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9,<4.0",
            "size": 5293,
            "upload_time": "2024-03-05T15:14:31",
            "upload_time_iso_8601": "2024-03-05T15:14:31.772255Z",
            "url": "https://files.pythonhosted.org/packages/9d/e4/1f159424b4f3e24710bce20c0f2f4d585981acaa42469bf934abc8f36f1c/telegram_phone_number_checker-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-05 15:14:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bellingcat",
    "github_project": "telegram-phone-number-checker",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "telegram-phone-number-checker"
}
        
Elapsed time: 0.19305s