weathermap


Nameweathermap JSON
Version 1.0.8 PyPI version JSON
download
home_pagehttps://github.com/savan2508/WeatherApp
SummaryOpenweathermap api simplified
upload_time2023-08-10 03:21:49
maintainer
docs_urlNone
authorSavan Patel
requires_python
licenseMIT
keywords weather forecast openweathermap openweather
VCS
bugtrack_url
requirements python-dotenv setuptools requests ipinfo geocoder geoip2
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # weathermap

The weathermap package aims to aid users in getting necessary weather information in a simplified way, making it easy to integrate into various development projects where weather data is needed. The project can be accessed on PyPI [here](https://pypi.org/project/weathermap/), and the GitHub repository is available [here](https://github.com/savan2508/WeatherApp).

Now the weathermap Library provides functionality for tracking geographical location based on user IP address and caching weather data to reduce API calls.

## Project Overview

The weathermap package version 1.0.7 is stable version, and its primary goal is to provide users with easy access to weather data as long as they have an API key from openweathermap.org. Acquiring the API key is straightforward and should be ready to use within two hours, after which this library becomes accessible for use.

## Acquiring the API Key

To use the Weather package, you'll need an API key from openweathermap.org. Follow these steps to obtain a free API key:

1. Go to [openweathermap.org](https://openweathermap.org/api) and create an account.
2. After successfully creating the account, log in to your account.
3. Once logged in, navigate to the API keys section.
4. Generate a new API key by following the provided instructions.
5. Make sure to copy the generated API key, as it will be required to create a Weather object.

## Installation

You can install the package using pip:

```bash
pip install weathermap
```

## Key Features

- Simplified Weather Data: Instead of overwhelming users with excessive data, the Weather package provides only the necessary weather information that users require.
- Flexible Use Cases: This library can be utilized in various scenarios, especially when users are developing programs that rely on different weather information for cities or specific latitude and longitude coordinates.
- Easy Data Access: The primary objective of the project is to allow users to create instances for different cities, and then easily access various weather information using different methods.
- Location tracking based on the user's IP address.
- Caching weather data to minimize API calls and improve performance.
- Support for various API endpoints, such as weather, forecast, and air pollution.
- Easily configurable timeout intervals for cached data.
- Compatibility with both IP geolocation services and the 'geocoder' library.
- Planned support for future features, including more information extraction from the API and compatibility with the One Call API version 3.0.

## Contributing
We welcome contributions to the Weather Information Library! Feel free to submit issues, feature requests, or pull requests on the GitHub repository.

## Usage
Here's an example of how to use the Weather Information Library:
```python
from weathermap import Weather

# Initialize Weather with location information
weather_info = Weather(apikey='YOUR_API_KEY', city="Tampa", state="Florida", country="US")

# Initialize Weather without location to enable location tracking
weather_info_for_current_ip = Weather(apikey='YOUR_API_KEY')

# Retrieve weather information
current_weather = weather_info.get_current_weather()
forecast = weather_info.get_forecast()

print("Current Weather:", current_weather)
print("Forecast:", forecast)
```

## Use Cases

The Weather Information Library offers versatile functionality that can be integrated into various applications and platforms to provide real-time weather data and enhance user experiences. Some potential use cases include:

### Weather Updates on Websites

By integrating the Weather Information Library into your website, you can easily provide visitors with up-to-date weather conditions based on their geographical location. This is particularly useful for travel, tourism, and outdoor event websites. Users can quickly access weather information relevant to their location, enabling them to plan their activities more effectively.

### Event Ticket Booking Platforms

Event ticket booking platforms can benefit from the Weather Information Library by offering forecast weather data for the dates of scheduled events. This helps attendees and travelers make informed decisions about attending outdoor events, concerts, festivals, or sports games, considering the weather conditions.

### Travel Planning Applications

Travel planning applications can use the library to display weather forecasts for the chosen travel destination. Travelers can prepare for their trips by knowing the expected weather conditions during their stay, ensuring they pack appropriately and plan outdoor activities accordingly.

### Location-Based Recommendations

Applications that provide location-based recommendations, such as local restaurants, attractions, and activities, can leverage the Weather Information Library to offer more tailored suggestions. By considering the weather conditions, these apps can suggest indoor or outdoor options that align with the user's preferences and the current weather.

### IoT and Smart Home Integration

Internet of Things (IoT) devices and smart home systems can use the Weather Information Library to enhance their capabilities. For example, a smart sprinkler system can adjust watering schedules based on upcoming rainfall predictions, optimizing water usage and promoting eco-friendly practices.

### Outdoor Event Management

Organizers of outdoor events, such as music festivals, markets, or fairs, can utilize the library to monitor weather forecasts and make real-time decisions regarding event logistics. By staying informed about weather changes, event planners can ensure the safety and comfort of attendees.

### Digital Signage and Displays

Digital signage solutions in public spaces, transportation hubs, and retail environments can provide localized weather updates using the Weather Information Library. This information can be valuable to commuters, shoppers, and tourists passing through these areas.

These are just a few examples of how the Weather Information Library can enhance applications and platforms by providing accurate and relevant weather data. As the library continues to evolve, more opportunities for integration and innovation will emerge.


## Release Notes

### Version 1.0.7

- Added location tracking based on user IP address using IP geolocation services and the 'geocoder' library.
- Implemented caching system to reduce API calls and improve performance.
- Support for various API endpoints, including weather, forecast, and air pollution.
- Added timeout interval configuration for cached data.
- Improved error handling and robustness.
- Compatibility with both IP geolocation services and the 'geocoder' library.
- Bug fixes. 

### Version 1.0.6

- Initial release of the Weather Information Library.
- Basic functionality for retrieving weather data using OpenWeatherMap API.
- Support for forecast data.
- Minimal error handling and configurability.

## Planned Features for Future Versions

In future versions of the Weather Information Library, we plan to introduce the following enhancements:

- More comprehensive information extraction from API responses.
- Compatibility with the One Call API version 3.0 for a consolidated weather data solution.
- Enhanced error handling and error messages.
- Additional API endpoints and weather-related functionalities.
- Integration with popular Python libraries for data visualization.
- Improved documentation and usage examples.

Stay tuned for updates and new releases as we continue to enhance the Weather Information Library!
With this package, developers can effortlessly integrate weather data into their projects, making it a valuable tool for a wide range of applications.

## License
This project is licensed under the MIT License.

---
For more information and updates, visit the project on [PyPI](https://pypi.org/project/weathermap/) or check out the [GitHub repository](https://github.com/savan2508/WeatherApp).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/savan2508/WeatherApp",
    "name": "weathermap",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "weather,forecast,openweathermap,openweather",
    "author": "Savan Patel",
    "author_email": "sawanpatel2508@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/3c/5b/691fc28ef64af4c3c4377ad4fe66e3cc96caff1d490971bb1f0e7cf24880/weathermap-1.0.8.tar.gz",
    "platform": null,
    "description": "# weathermap\r\n\r\nThe weathermap package aims to aid users in getting necessary weather information in a simplified way, making it easy to integrate into various development projects where weather data is needed. The project can be accessed on PyPI [here](https://pypi.org/project/weathermap/), and the GitHub repository is available [here](https://github.com/savan2508/WeatherApp).\r\n\r\nNow the weathermap Library provides functionality for tracking geographical location based on user IP address and caching weather data to reduce API calls.\r\n\r\n## Project Overview\r\n\r\nThe weathermap package version 1.0.7 is stable version, and its primary goal is to provide users with easy access to weather data as long as they have an API key from openweathermap.org. Acquiring the API key is straightforward and should be ready to use within two hours, after which this library becomes accessible for use.\r\n\r\n## Acquiring the API Key\r\n\r\nTo use the Weather package, you'll need an API key from openweathermap.org. Follow these steps to obtain a free API key:\r\n\r\n1. Go to [openweathermap.org](https://openweathermap.org/api) and create an account.\r\n2. After successfully creating the account, log in to your account.\r\n3. Once logged in, navigate to the API keys section.\r\n4. Generate a new API key by following the provided instructions.\r\n5. Make sure to copy the generated API key, as it will be required to create a Weather object.\r\n\r\n## Installation\r\n\r\nYou can install the package using pip:\r\n\r\n```bash\r\npip install weathermap\r\n```\r\n\r\n## Key Features\r\n\r\n- Simplified Weather Data: Instead of overwhelming users with excessive data, the Weather package provides only the necessary weather information that users require.\r\n- Flexible Use Cases: This library can be utilized in various scenarios, especially when users are developing programs that rely on different weather information for cities or specific latitude and longitude coordinates.\r\n- Easy Data Access: The primary objective of the project is to allow users to create instances for different cities, and then easily access various weather information using different methods.\r\n- Location tracking based on the user's IP address.\r\n- Caching weather data to minimize API calls and improve performance.\r\n- Support for various API endpoints, such as weather, forecast, and air pollution.\r\n- Easily configurable timeout intervals for cached data.\r\n- Compatibility with both IP geolocation services and the 'geocoder' library.\r\n- Planned support for future features, including more information extraction from the API and compatibility with the One Call API version 3.0.\r\n\r\n## Contributing\r\nWe welcome contributions to the Weather Information Library! Feel free to submit issues, feature requests, or pull requests on the GitHub repository.\r\n\r\n## Usage\r\nHere's an example of how to use the Weather Information Library:\r\n```python\r\nfrom weathermap import Weather\r\n\r\n# Initialize Weather with location information\r\nweather_info = Weather(apikey='YOUR_API_KEY', city=\"Tampa\", state=\"Florida\", country=\"US\")\r\n\r\n# Initialize Weather without location to enable location tracking\r\nweather_info_for_current_ip = Weather(apikey='YOUR_API_KEY')\r\n\r\n# Retrieve weather information\r\ncurrent_weather = weather_info.get_current_weather()\r\nforecast = weather_info.get_forecast()\r\n\r\nprint(\"Current Weather:\", current_weather)\r\nprint(\"Forecast:\", forecast)\r\n```\r\n\r\n## Use Cases\r\n\r\nThe Weather Information Library offers versatile functionality that can be integrated into various applications and platforms to provide real-time weather data and enhance user experiences. Some potential use cases include:\r\n\r\n### Weather Updates on Websites\r\n\r\nBy integrating the Weather Information Library into your website, you can easily provide visitors with up-to-date weather conditions based on their geographical location. This is particularly useful for travel, tourism, and outdoor event websites. Users can quickly access weather information relevant to their location, enabling them to plan their activities more effectively.\r\n\r\n### Event Ticket Booking Platforms\r\n\r\nEvent ticket booking platforms can benefit from the Weather Information Library by offering forecast weather data for the dates of scheduled events. This helps attendees and travelers make informed decisions about attending outdoor events, concerts, festivals, or sports games, considering the weather conditions.\r\n\r\n### Travel Planning Applications\r\n\r\nTravel planning applications can use the library to display weather forecasts for the chosen travel destination. Travelers can prepare for their trips by knowing the expected weather conditions during their stay, ensuring they pack appropriately and plan outdoor activities accordingly.\r\n\r\n### Location-Based Recommendations\r\n\r\nApplications that provide location-based recommendations, such as local restaurants, attractions, and activities, can leverage the Weather Information Library to offer more tailored suggestions. By considering the weather conditions, these apps can suggest indoor or outdoor options that align with the user's preferences and the current weather.\r\n\r\n### IoT and Smart Home Integration\r\n\r\nInternet of Things (IoT) devices and smart home systems can use the Weather Information Library to enhance their capabilities. For example, a smart sprinkler system can adjust watering schedules based on upcoming rainfall predictions, optimizing water usage and promoting eco-friendly practices.\r\n\r\n### Outdoor Event Management\r\n\r\nOrganizers of outdoor events, such as music festivals, markets, or fairs, can utilize the library to monitor weather forecasts and make real-time decisions regarding event logistics. By staying informed about weather changes, event planners can ensure the safety and comfort of attendees.\r\n\r\n### Digital Signage and Displays\r\n\r\nDigital signage solutions in public spaces, transportation hubs, and retail environments can provide localized weather updates using the Weather Information Library. This information can be valuable to commuters, shoppers, and tourists passing through these areas.\r\n\r\nThese are just a few examples of how the Weather Information Library can enhance applications and platforms by providing accurate and relevant weather data. As the library continues to evolve, more opportunities for integration and innovation will emerge.\r\n\r\n\r\n## Release Notes\r\n\r\n### Version 1.0.7\r\n\r\n- Added location tracking based on user IP address using IP geolocation services and the 'geocoder' library.\r\n- Implemented caching system to reduce API calls and improve performance.\r\n- Support for various API endpoints, including weather, forecast, and air pollution.\r\n- Added timeout interval configuration for cached data.\r\n- Improved error handling and robustness.\r\n- Compatibility with both IP geolocation services and the 'geocoder' library.\r\n- Bug fixes. \r\n\r\n### Version 1.0.6\r\n\r\n- Initial release of the Weather Information Library.\r\n- Basic functionality for retrieving weather data using OpenWeatherMap API.\r\n- Support for forecast data.\r\n- Minimal error handling and configurability.\r\n\r\n## Planned Features for Future Versions\r\n\r\nIn future versions of the Weather Information Library, we plan to introduce the following enhancements:\r\n\r\n- More comprehensive information extraction from API responses.\r\n- Compatibility with the One Call API version 3.0 for a consolidated weather data solution.\r\n- Enhanced error handling and error messages.\r\n- Additional API endpoints and weather-related functionalities.\r\n- Integration with popular Python libraries for data visualization.\r\n- Improved documentation and usage examples.\r\n\r\nStay tuned for updates and new releases as we continue to enhance the Weather Information Library!\r\nWith this package, developers can effortlessly integrate weather data into their projects, making it a valuable tool for a wide range of applications.\r\n\r\n## License\r\nThis project is licensed under the MIT License.\r\n\r\n---\r\nFor more information and updates, visit the project on [PyPI](https://pypi.org/project/weathermap/) or check out the [GitHub repository](https://github.com/savan2508/WeatherApp).\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Openweathermap api simplified",
    "version": "1.0.8",
    "project_urls": {
        "Homepage": "https://github.com/savan2508/WeatherApp"
    },
    "split_keywords": [
        "weather",
        "forecast",
        "openweathermap",
        "openweather"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f2dab31b0ad30b25fe6082f45cef3565386611f4d038433ab088e6245f3f32d",
                "md5": "84187953d2f645f39debe7ea06499bb4",
                "sha256": "e920d5970a123ff88a2450772f3f887173014161f03f534bea9d8a643a54922f"
            },
            "downloads": -1,
            "filename": "weathermap-1.0.8-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "84187953d2f645f39debe7ea06499bb4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 15153,
            "upload_time": "2023-08-10T03:21:47",
            "upload_time_iso_8601": "2023-08-10T03:21:47.619399Z",
            "url": "https://files.pythonhosted.org/packages/5f/2d/ab31b0ad30b25fe6082f45cef3565386611f4d038433ab088e6245f3f32d/weathermap-1.0.8-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c5b691fc28ef64af4c3c4377ad4fe66e3cc96caff1d490971bb1f0e7cf24880",
                "md5": "93e5e699d7e70f9347384eb88930b92a",
                "sha256": "4b142f2f507457cec4d89d649db1dd1449e23fec8c983d0112622400e262b6f5"
            },
            "downloads": -1,
            "filename": "weathermap-1.0.8.tar.gz",
            "has_sig": false,
            "md5_digest": "93e5e699d7e70f9347384eb88930b92a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 16571,
            "upload_time": "2023-08-10T03:21:49",
            "upload_time_iso_8601": "2023-08-10T03:21:49.241396Z",
            "url": "https://files.pythonhosted.org/packages/3c/5b/691fc28ef64af4c3c4377ad4fe66e3cc96caff1d490971bb1f0e7cf24880/weathermap-1.0.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-10 03:21:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "savan2508",
    "github_project": "WeatherApp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "python-dotenv",
            "specs": [
                [
                    "~=",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": [
                [
                    "~=",
                    "65.5.1"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    "~=",
                    "2.31.0"
                ]
            ]
        },
        {
            "name": "ipinfo",
            "specs": [
                [
                    "~=",
                    "4.4.2"
                ]
            ]
        },
        {
            "name": "geocoder",
            "specs": [
                [
                    "~=",
                    "1.38.1"
                ]
            ]
        },
        {
            "name": "geoip2",
            "specs": [
                [
                    "~=",
                    "4.7.0"
                ]
            ]
        }
    ],
    "lcname": "weathermap"
}
        
Elapsed time: 0.09498s