phone-locator


Namephone-locator JSON
Version 0.1.1 PyPI version JSON
download
home_pageNone
SummaryPhone number geolocation and carrier information tool
upload_time2025-10-08 18:52:04
maintainerNone
docs_urlNone
authorjmeiracorbal
requires_python<3.14,>=3.8
licenseMIT License Copyright (c) 2024 jmeiracorbal 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.
keywords carrier geolocation lookup osint phone phonenumbers
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Phone Locator

[![Python](https://img.shields.io/badge/Python-3.8%2B-blue.svg)](https://python.org)
[![uv](https://img.shields.io/badge/uv-managed-blue.svg)](https://github.com/astral-sh/uv)
[![License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
[![Platform](https://img.shields.io/badge/Platform-Linux%20%7C%20macOS%20%7C%20Windows-lightgrey.svg)](https://github.com/jmeiracorbal/phone-locator)

A command-line tool to get detailed information about phone numbers. Discover location, carrier, timezone, and other details about any phone number.

## Features

- **Phone number analysis** - Get complete information about any phone number
- **Country and region detection** - Country, region, city, and coordinates
- **Carrier details** - Mobile operator and service provider info
- **Timezone identification** - Automatically finds the right timezone
- **Number validation** - Check if phone numbers are valid and possible
- **Format conversion** - International, national, E.164 formats
- **Clean interface** - Colored terminal output

## Installation

### Option 1: Install as command-line tool

Install directly from the repository:

```bash
pip install git+https://github.com/jmeiracorbal/phone-locator.git
```

Or clone and install locally:

```bash
git clone https://github.com/jmeiracorbal/phone-locator.git
cd phone-locator
pip install .
```

After installation, run from anywhere:

```bash
phone-locator
```

### Option 2: Download pre-built executable

1. Go to [Releases](https://github.com/jmeiracorbal/phone-locator/releases)
2. Download the executable for your platform:
   - **Linux**: `phone-locator` (binary)
   - **macOS**: `phone-locator` (binary)
   - **Windows**: `phone-locator.exe` (executable)
3. Run directly without installation

**Linux/macOS:**

```bash
chmod +x phone-locator
./phone-locator
```

**Windows:**

```cmd
phone-locator.exe
```

### Option 3: Run with uv (for development)

```bash
git clone https://github.com/jmeiracorbal/phone-locator.git
cd phone-locator
uv run python main.py
```

## Usage

After installation or running the executable, enter a country code and phone number to get detailed information including location, carrier, timezone, and validity.

## Requirements

- Python 3.8 or higher
- Internet connection (for carrier lookup)

## Data Source

This tool uses the `phonenumbers` library by Google to parse and validate phone numbers with comprehensive metadata.

## Contributing

1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Acknowledgments

- **Original author**: [HUNXBYTS](https://github.com/HUNXBYTS)
- **Modified by**: [jmeiracorbal](https://github.com/jmeiracorbal)
- **Based on**: Ghost Tracker tool

## Support

If you run into any issues or have questions:
- Create an issue on GitHub
- Check the [Releases](https://github.com/jmeiracorbal/phone-locator/releases) page for the latest version

---

**Note**: This tool is for educational and legitimate purposes. Respect privacy and use it responsibly.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "phone-locator",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.14,>=3.8",
    "maintainer_email": null,
    "keywords": "carrier, geolocation, lookup, osint, phone, phonenumbers",
    "author": "jmeiracorbal",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/4c/72/f51ed32200c6cfa84c3c23b8d1bc1ae0a2a746712e148ad6b021310bbbe4/phone_locator-0.1.1.tar.gz",
    "platform": null,
    "description": "# Phone Locator\n\n[![Python](https://img.shields.io/badge/Python-3.8%2B-blue.svg)](https://python.org)\n[![uv](https://img.shields.io/badge/uv-managed-blue.svg)](https://github.com/astral-sh/uv)\n[![License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)\n[![Platform](https://img.shields.io/badge/Platform-Linux%20%7C%20macOS%20%7C%20Windows-lightgrey.svg)](https://github.com/jmeiracorbal/phone-locator)\n\nA command-line tool to get detailed information about phone numbers. Discover location, carrier, timezone, and other details about any phone number.\n\n## Features\n\n- **Phone number analysis** - Get complete information about any phone number\n- **Country and region detection** - Country, region, city, and coordinates\n- **Carrier details** - Mobile operator and service provider info\n- **Timezone identification** - Automatically finds the right timezone\n- **Number validation** - Check if phone numbers are valid and possible\n- **Format conversion** - International, national, E.164 formats\n- **Clean interface** - Colored terminal output\n\n## Installation\n\n### Option 1: Install as command-line tool\n\nInstall directly from the repository:\n\n```bash\npip install git+https://github.com/jmeiracorbal/phone-locator.git\n```\n\nOr clone and install locally:\n\n```bash\ngit clone https://github.com/jmeiracorbal/phone-locator.git\ncd phone-locator\npip install .\n```\n\nAfter installation, run from anywhere:\n\n```bash\nphone-locator\n```\n\n### Option 2: Download pre-built executable\n\n1. Go to [Releases](https://github.com/jmeiracorbal/phone-locator/releases)\n2. Download the executable for your platform:\n   - **Linux**: `phone-locator` (binary)\n   - **macOS**: `phone-locator` (binary)\n   - **Windows**: `phone-locator.exe` (executable)\n3. Run directly without installation\n\n**Linux/macOS:**\n\n```bash\nchmod +x phone-locator\n./phone-locator\n```\n\n**Windows:**\n\n```cmd\nphone-locator.exe\n```\n\n### Option 3: Run with uv (for development)\n\n```bash\ngit clone https://github.com/jmeiracorbal/phone-locator.git\ncd phone-locator\nuv run python main.py\n```\n\n## Usage\n\nAfter installation or running the executable, enter a country code and phone number to get detailed information including location, carrier, timezone, and validity.\n\n## Requirements\n\n- Python 3.8 or higher\n- Internet connection (for carrier lookup)\n\n## Data Source\n\nThis tool uses the `phonenumbers` library by Google to parse and validate phone numbers with comprehensive metadata.\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- **Original author**: [HUNXBYTS](https://github.com/HUNXBYTS)\n- **Modified by**: [jmeiracorbal](https://github.com/jmeiracorbal)\n- **Based on**: Ghost Tracker tool\n\n## Support\n\nIf you run into any issues or have questions:\n- Create an issue on GitHub\n- Check the [Releases](https://github.com/jmeiracorbal/phone-locator/releases) page for the latest version\n\n---\n\n**Note**: This tool is for educational and legitimate purposes. Respect privacy and use it responsibly.\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2024 jmeiracorbal\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.",
    "summary": "Phone number geolocation and carrier information tool",
    "version": "0.1.1",
    "project_urls": {
        "Homepage": "https://github.com/jmeiracorbal/phone-locator",
        "Issues": "https://github.com/jmeiracorbal/phone-locator/issues",
        "Repository": "https://github.com/jmeiracorbal/phone-locator"
    },
    "split_keywords": [
        "carrier",
        " geolocation",
        " lookup",
        " osint",
        " phone",
        " phonenumbers"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f852359dfbe0edc220f8061bbab82e650b127a7daaa68e643c3501aa58e7c68",
                "md5": "a1ecedb1e7a927f0c906246c8c30b1e1",
                "sha256": "643ba67f25bdb7bd51c1d319e6dfa963da8569f803be0c5be2b029cb9d23731c"
            },
            "downloads": -1,
            "filename": "phone_locator-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a1ecedb1e7a927f0c906246c8c30b1e1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.14,>=3.8",
            "size": 6709,
            "upload_time": "2025-10-08T18:52:03",
            "upload_time_iso_8601": "2025-10-08T18:52:03.143079Z",
            "url": "https://files.pythonhosted.org/packages/9f/85/2359dfbe0edc220f8061bbab82e650b127a7daaa68e643c3501aa58e7c68/phone_locator-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c72f51ed32200c6cfa84c3c23b8d1bc1ae0a2a746712e148ad6b021310bbbe4",
                "md5": "041b86235f3de3785ae711845cb5825f",
                "sha256": "b70e4408d0631743ea431371a84d87447381a6154b9929e4a664ffd70316269a"
            },
            "downloads": -1,
            "filename": "phone_locator-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "041b86235f3de3785ae711845cb5825f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.14,>=3.8",
            "size": 55088,
            "upload_time": "2025-10-08T18:52:04",
            "upload_time_iso_8601": "2025-10-08T18:52:04.098077Z",
            "url": "https://files.pythonhosted.org/packages/4c/72/f51ed32200c6cfa84c3c23b8d1bc1ae0a2a746712e148ad6b021310bbbe4/phone_locator-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-08 18:52:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jmeiracorbal",
    "github_project": "phone-locator",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "phone-locator"
}
        
Elapsed time: 2.36488s