ip-locator


Nameip-locator JSON
Version 0.1.1 PyPI version JSON
download
home_pageNone
SummaryIP address geolocation and network information tool
upload_time2025-10-08 18:51:52
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 geolocation ip isp lookup network osint
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # IP 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/ip-locator)

A command-line tool to get detailed geolocation and network information about IP addresses. Discover location, ISP, timezone, coordinates, and other details about any IP address.

## Features

- **IP address geolocation** - Detailed location information for any IP
- **Network information** - ISP, ASN, organization details
- **Geographic data** - Country, city, region, coordinates
- **Timezone information** - Current time, UTC offset, DST status
- **Map integration** - Direct Google Maps link with coordinates
- **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/ip-locator.git
```

Or clone and install locally:

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

After installation, run from anywhere:

```bash
ip-locator
```

### Option 2: Download pre-built executable

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

**Linux/macOS:**

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

**Windows:**

```cmd
ip-locator.exe
```

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

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

## Usage

After installation or running the executable, enter an IP address to get detailed information including geolocation, ISP, timezone, and network details.

## Requirements

- Python 3.8 or higher
- Internet connection (for IP lookup API)

## Data Source

This tool uses the [ipwho.is](https://ipwho.is) API to fetch IP address information.

## 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/ip-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": "ip-locator",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.14,>=3.8",
    "maintainer_email": null,
    "keywords": "geolocation, ip, isp, lookup, network, osint",
    "author": "jmeiracorbal",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/09/17/1ce99b7f3fa1458046b21143aebe7bd477e983191169c45ef54ab333e7c4/ip_locator-0.1.1.tar.gz",
    "platform": null,
    "description": "# IP 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/ip-locator)\n\nA command-line tool to get detailed geolocation and network information about IP addresses. Discover location, ISP, timezone, coordinates, and other details about any IP address.\n\n## Features\n\n- **IP address geolocation** - Detailed location information for any IP\n- **Network information** - ISP, ASN, organization details\n- **Geographic data** - Country, city, region, coordinates\n- **Timezone information** - Current time, UTC offset, DST status\n- **Map integration** - Direct Google Maps link with coordinates\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/ip-locator.git\n```\n\nOr clone and install locally:\n\n```bash\ngit clone https://github.com/jmeiracorbal/ip-locator.git\ncd ip-locator\npip install .\n```\n\nAfter installation, run from anywhere:\n\n```bash\nip-locator\n```\n\n### Option 2: Download pre-built executable\n\n1. Go to [Releases](https://github.com/jmeiracorbal/ip-locator/releases)\n2. Download the executable for your platform:\n   - **Linux**: `ip-locator` (binary)\n   - **macOS**: `ip-locator` (binary)\n   - **Windows**: `ip-locator.exe` (executable)\n3. Run directly without installation\n\n**Linux/macOS:**\n\n```bash\nchmod +x ip-locator\n./ip-locator\n```\n\n**Windows:**\n\n```cmd\nip-locator.exe\n```\n\n### Option 3: Run with uv (for development)\n\n```bash\ngit clone https://github.com/jmeiracorbal/ip-locator.git\ncd ip-locator\nuv run python main.py\n```\n\n## Usage\n\nAfter installation or running the executable, enter an IP address to get detailed information including geolocation, ISP, timezone, and network details.\n\n## Requirements\n\n- Python 3.8 or higher\n- Internet connection (for IP lookup API)\n\n## Data Source\n\nThis tool uses the [ipwho.is](https://ipwho.is) API to fetch IP address information.\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/ip-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": "IP address geolocation and network information tool",
    "version": "0.1.1",
    "project_urls": {
        "Homepage": "https://github.com/jmeiracorbal/ip-locator",
        "Issues": "https://github.com/jmeiracorbal/ip-locator/issues",
        "Repository": "https://github.com/jmeiracorbal/ip-locator"
    },
    "split_keywords": [
        "geolocation",
        " ip",
        " isp",
        " lookup",
        " network",
        " osint"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f36b2cfdac8b0ecadbe61608c5e837e59a5004f60b9d3abea669684de92870ee",
                "md5": "322045d95a447acb2c465c944856d86a",
                "sha256": "5153a81b0183bae3596bd8ce3261c14b90bc239195720208c31fd524b71d90ae"
            },
            "downloads": -1,
            "filename": "ip_locator-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "322045d95a447acb2c465c944856d86a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.14,>=3.8",
            "size": 6246,
            "upload_time": "2025-10-08T18:51:51",
            "upload_time_iso_8601": "2025-10-08T18:51:51.009497Z",
            "url": "https://files.pythonhosted.org/packages/f3/6b/2cfdac8b0ecadbe61608c5e837e59a5004f60b9d3abea669684de92870ee/ip_locator-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09171ce99b7f3fa1458046b21143aebe7bd477e983191169c45ef54ab333e7c4",
                "md5": "bef3fdd3324935f7453363c25251615c",
                "sha256": "7357a283379916f73cea57826369b08019d46c1533f0ec68eeaebe0e675fb7ab"
            },
            "downloads": -1,
            "filename": "ip_locator-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "bef3fdd3324935f7453363c25251615c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.14,>=3.8",
            "size": 5788,
            "upload_time": "2025-10-08T18:51:52",
            "upload_time_iso_8601": "2025-10-08T18:51:52.135336Z",
            "url": "https://files.pythonhosted.org/packages/09/17/1ce99b7f3fa1458046b21143aebe7bd477e983191169c45ef54ab333e7c4/ip_locator-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-08 18:51:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jmeiracorbal",
    "github_project": "ip-locator",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ip-locator"
}
        
Elapsed time: 0.71269s