πŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more β†’
Socket
Book a DemoInstallSign in
Socket

requests-lat-long-timezone-locale-ip-api

Package Overview
Dependencies
Maintainers
0
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

requests-lat-long-timezone-locale-ip-api

Get timezone, locale, and location from IP address to use in your requests

0.1.3
PyPI
Maintainers
0

🌍 GeoLocation API

A simple API to retrieve timezone, locale, and geolocation data from an IP address. Perfect for enriching your application with accurate location-based accept-language and timezone details.

πŸ“¦ Installation

Install the package using pip:

pip install requests-lat-long-timezone-locale-ip-api

πŸš€ Usage

Here's how to get started with the GeoLocation class:

from geolocation import GeoLocation

# Initialize the GeoLocation class with a proxy (if needed)
geo = GeoLocation(proxy="http://user:pass@host:port")

# Fetch geolocation data
geolocation_data = geo.get_geolocation()

# Print the geolocation data
print(geolocation_data)

# Returns the following dictionary:
{
    "lat": 48.8566,
    "lon": 2.3522,
    "timezone": "Europe/Paris",
    "locale": "fr-FR",
    "ip": "82.117.11.11"
}

πŸ› οΈ Features

  • Fetch public IP address
  • Retrieve latitude, longitude, timezone, and locale
  • Cache results using Redis for faster subsequent lookups

πŸ“‹ Requirements

To use this package, you'll need:

  • Python 3.6+
  • requests library
  • redis library
  • python-dotenv library

Install the necessary dependencies with:

pip install requests redis python-dotenv

πŸ”§ Configuration

Set up your Redis and proxy configurations in a .env file:

REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD=yourpassword

🌟 Contributing

Contributions are welcome! If you have suggestions or improvements, feel free to:

  • Open an issue to discuss the changes.
  • Submit a pull request with your enhancements.

πŸ‘€ Author

dormic97 - GitHub Profile

πŸ“ License

This project is licensed under the MIT License. See the LICENSE file for details.

Happy coding! πŸŽ‰

This version includes improved formatting, readability, and a clear flow for anyone using the API.

Keywords

ip

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts