weather-nws-mcp


Nameweather-nws-mcp JSON
Version 0.1.9 PyPI version JSON
download
home_pageNone
SummaryA Python package for accessing weather data from the National Weather Service (NWS) API
upload_time2025-10-11 03:21:06
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseNone
keywords weather nws api forecast alerts
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Weather Package

A Python package for accessing weather data from the National Weather Service (NWS) API.

## Features

- Get weather alerts for US states
- Get weather forecasts for any location by latitude and longitude
- Easy-to-use asynchronous API

## Installation

```bash
pip install weather
```

## Usage

```python
from weather import get_alerts, get_forecast

# Get weather alerts for California
alerts = get_alerts("CA")

# Get forecast for a specific location (latitude, longitude)
forecast = get_forecast(34.0522, -118.2437)  # Los Angeles, CA
```

## Requirements

- Python 3.11+
- httpx
- mcp

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "weather-nws-mcp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "weather, nws, api, forecast, alerts",
    "author": null,
    "author_email": "501849930 <501849930@qq.com>",
    "download_url": "https://files.pythonhosted.org/packages/55/a3/24df8422b75c87590a43ccd4b79c2a0324c8476ff00f7a10776224310581/weather_nws_mcp-0.1.9.tar.gz",
    "platform": null,
    "description": "# Weather Package\n\nA Python package for accessing weather data from the National Weather Service (NWS) API.\n\n## Features\n\n- Get weather alerts for US states\n- Get weather forecasts for any location by latitude and longitude\n- Easy-to-use asynchronous API\n\n## Installation\n\n```bash\npip install weather\n```\n\n## Usage\n\n```python\nfrom weather import get_alerts, get_forecast\n\n# Get weather alerts for California\nalerts = get_alerts(\"CA\")\n\n# Get forecast for a specific location (latitude, longitude)\nforecast = get_forecast(34.0522, -118.2437)  # Los Angeles, CA\n```\n\n## Requirements\n\n- Python 3.11+\n- httpx\n- mcp\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Python package for accessing weather data from the National Weather Service (NWS) API",
    "version": "0.1.9",
    "project_urls": null,
    "split_keywords": [
        "weather",
        " nws",
        " api",
        " forecast",
        " alerts"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d935b74fc065de1bac84a018ee264534ea0b602ac1fcee4c8b6c56e2e29fd88",
                "md5": "db8643350b46b7f8072ef7f907c8477d",
                "sha256": "ab28241f16fa1b3a9ada54a847dcde7d52f3bfbb41b84b642562b8d67d6a109b"
            },
            "downloads": -1,
            "filename": "weather_nws_mcp-0.1.9-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "db8643350b46b7f8072ef7f907c8477d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 5070,
            "upload_time": "2025-10-11T03:21:04",
            "upload_time_iso_8601": "2025-10-11T03:21:04.718261Z",
            "url": "https://files.pythonhosted.org/packages/8d/93/5b74fc065de1bac84a018ee264534ea0b602ac1fcee4c8b6c56e2e29fd88/weather_nws_mcp-0.1.9-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55a324df8422b75c87590a43ccd4b79c2a0324c8476ff00f7a10776224310581",
                "md5": "63432b447033cafa3f920073484d0fa6",
                "sha256": "ef4c05b6aba9dbf542509ba89d4cf9546c1c70bdb17d8753228e8ec1e9a082ed"
            },
            "downloads": -1,
            "filename": "weather_nws_mcp-0.1.9.tar.gz",
            "has_sig": false,
            "md5_digest": "63432b447033cafa3f920073484d0fa6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 4339,
            "upload_time": "2025-10-11T03:21:06",
            "upload_time_iso_8601": "2025-10-11T03:21:06.168695Z",
            "url": "https://files.pythonhosted.org/packages/55/a3/24df8422b75c87590a43ccd4b79c2a0324c8476ff00f7a10776224310581/weather_nws_mcp-0.1.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-11 03:21:06",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "weather-nws-mcp"
}
        
Elapsed time: 1.61015s