weather-command


Nameweather-command JSON
Version 6.1.6 PyPI version JSON
download
home_pagehttps://github.com/sanders41/weather-command
SummaryCommand line weather app
upload_time2024-04-19 23:21:02
maintainerNone
docs_urlNone
authorPaul Sanders
requires_python<4.0,>=3.8
licenseMIT
keywords weather cli
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Weather Command

[![Tests Status](https://github.com/sanders41/weather-command/workflows/Testing/badge.svg?branch=main&event=push)](https://github.com/sanders41/weather-command/actions?query=workflow%3ATesting+branch%3Amain+event%3Apush)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/sanders41/weather-command/main.svg)](https://results.pre-commit.ci/latest/github/sanders41/weather-command/main)
[![Coverage](https://codecov.io/github/sanders41/weather-command/coverage.svg?branch=main)](https://codecov.io/gh/sanders41/weather-command)
[![PyPI version](https://badge.fury.io/py/weather-command.svg)](https://badge.fury.io/py/weather-command)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/weather-command?color=5cc141)](https://github.com/sanders41/weather-command)

A command line weather app

## Installation

Installation with [pipx](https://github.com/pypa/pipx) is recommended.

```sh
pipx install weather-command
```

Alternatively Weather Command can be installed with pip.

```sh
pip install weather-command
```

## Usage

First an API key is needed from [OpenWeather](https://openweathermap.org/), A free account is all that
is needed. Once you have your API key create an environment variable named `OPEN_WEATHER_API_KEY` that
constains your API key.

```sh
export OPEN_WEATHER_API_KEY=your-api-key
```

Each time the shell is restarted this variable will be cleared. To avoid this it can be added to your
profile. For example if your shell is zsh the API key can be added to the `~/.zshenv` file. Doing this
will prevent the need to re-add the key each time the shell is started.

To get the weather for a city:

```sh
weather city seattle
```

Once installed you can also add aliases to your shell to make it quick to get a forecast. For example
if your shell is zsh you can add something like the following to your `~/.zshrc` file:

```sh
alias we="weather zip 98109 -i --am-pm"
alias wed="weather zip 98109 -i --am-pm -f daily"
alias weh="weather zip 98109 -i --am-pm -f hourly"
```

After adding this to the `~/.zshrc` you will need to restart your terminal. After that typing `we`
will get the current forecast, `wed` will get the daily forecast and `weh` will get the hourly forecast.

## Examples

- Current Weather

![Current weather](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/current.png)

- Current Weather Temp Only

![Current weather temp only](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/current_temp_only.png)

- Daily Weather

![Daily weather](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/daily.png)

- Daily Weather Temp Only

![Daily weather temp only](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/daily_temp_only.png)

- Hourly Weather

![Hourly weather](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/hourly.png)

- Hourly Weather Temp Only

![Hourl weather temp only](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/hourly_temp_only.png)

## Settings
weather now has the ability to save settings to default certain flags. The list of possible settings can be seen with:

```sh
weather settings --help
```
## Contributing

Contributions to this project are welcome. If you are interested in contributing please see our [contributing guide](CONTRIBUTING.md)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/sanders41/weather-command",
    "name": "weather-command",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "weather, cli",
    "author": "Paul Sanders",
    "author_email": "psanders1@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/ea/84/e81d3d3123e8786879b4c6da277e30193d7f44854d26659cddb37fe8600e/weather_command-6.1.6.tar.gz",
    "platform": null,
    "description": "# Weather Command\n\n[![Tests Status](https://github.com/sanders41/weather-command/workflows/Testing/badge.svg?branch=main&event=push)](https://github.com/sanders41/weather-command/actions?query=workflow%3ATesting+branch%3Amain+event%3Apush)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/sanders41/weather-command/main.svg)](https://results.pre-commit.ci/latest/github/sanders41/weather-command/main)\n[![Coverage](https://codecov.io/github/sanders41/weather-command/coverage.svg?branch=main)](https://codecov.io/gh/sanders41/weather-command)\n[![PyPI version](https://badge.fury.io/py/weather-command.svg)](https://badge.fury.io/py/weather-command)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/weather-command?color=5cc141)](https://github.com/sanders41/weather-command)\n\nA command line weather app\n\n## Installation\n\nInstallation with [pipx](https://github.com/pypa/pipx) is recommended.\n\n```sh\npipx install weather-command\n```\n\nAlternatively Weather Command can be installed with pip.\n\n```sh\npip install weather-command\n```\n\n## Usage\n\nFirst an API key is needed from [OpenWeather](https://openweathermap.org/), A free account is all that\nis needed. Once you have your API key create an environment variable named `OPEN_WEATHER_API_KEY` that\nconstains your API key.\n\n```sh\nexport OPEN_WEATHER_API_KEY=your-api-key\n```\n\nEach time the shell is restarted this variable will be cleared. To avoid this it can be added to your\nprofile. For example if your shell is zsh the API key can be added to the `~/.zshenv` file. Doing this\nwill prevent the need to re-add the key each time the shell is started.\n\nTo get the weather for a city:\n\n```sh\nweather city seattle\n```\n\nOnce installed you can also add aliases to your shell to make it quick to get a forecast. For example\nif your shell is zsh you can add something like the following to your `~/.zshrc` file:\n\n```sh\nalias we=\"weather zip 98109 -i --am-pm\"\nalias wed=\"weather zip 98109 -i --am-pm -f daily\"\nalias weh=\"weather zip 98109 -i --am-pm -f hourly\"\n```\n\nAfter adding this to the `~/.zshrc` you will need to restart your terminal. After that typing `we`\nwill get the current forecast, `wed` will get the daily forecast and `weh` will get the hourly forecast.\n\n## Examples\n\n- Current Weather\n\n![Current weather](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/current.png)\n\n- Current Weather Temp Only\n\n![Current weather temp only](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/current_temp_only.png)\n\n- Daily Weather\n\n![Daily weather](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/daily.png)\n\n- Daily Weather Temp Only\n\n![Daily weather temp only](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/daily_temp_only.png)\n\n- Hourly Weather\n\n![Hourly weather](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/hourly.png)\n\n- Hourly Weather Temp Only\n\n![Hourl weather temp only](https://raw.githubusercontent.com/sanders41/weather-command/main/assets/hourly_temp_only.png)\n\n## Settings\nweather now has the ability to save settings to default certain flags. The list of possible settings can be seen with:\n\n```sh\nweather settings --help\n```\n## Contributing\n\nContributions to this project are welcome. If you are interested in contributing please see our [contributing guide](CONTRIBUTING.md)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Command line weather app",
    "version": "6.1.6",
    "project_urls": {
        "Documentation": "https://github.com/sanders41/weather-command",
        "Homepage": "https://github.com/sanders41/weather-command",
        "Repository": "https://github.com/sanders41/weather-command"
    },
    "split_keywords": [
        "weather",
        " cli"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f34a3a60c632a7c7629246bc52ae5dc830b0ad276a76b9a6b69def50e96557db",
                "md5": "12fce3299e3a5e3505a7e54aa6b7b315",
                "sha256": "02e5dff2148368c56cf92612a356fbf518aaad9cb41ee4ddf95287bead7f052c"
            },
            "downloads": -1,
            "filename": "weather_command-6.1.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "12fce3299e3a5e3505a7e54aa6b7b315",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 17519,
            "upload_time": "2024-04-19T23:21:00",
            "upload_time_iso_8601": "2024-04-19T23:21:00.407458Z",
            "url": "https://files.pythonhosted.org/packages/f3/4a/3a60c632a7c7629246bc52ae5dc830b0ad276a76b9a6b69def50e96557db/weather_command-6.1.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea84e81d3d3123e8786879b4c6da277e30193d7f44854d26659cddb37fe8600e",
                "md5": "36a61b16f5a41e805bb43bba6a0f4abf",
                "sha256": "bd2862f88ac7fece9bb2c7d64753860d55027da6a6a7ae41b2189bc5684ce985"
            },
            "downloads": -1,
            "filename": "weather_command-6.1.6.tar.gz",
            "has_sig": false,
            "md5_digest": "36a61b16f5a41e805bb43bba6a0f4abf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 14346,
            "upload_time": "2024-04-19T23:21:02",
            "upload_time_iso_8601": "2024-04-19T23:21:02.433326Z",
            "url": "https://files.pythonhosted.org/packages/ea/84/e81d3d3123e8786879b4c6da277e30193d7f44854d26659cddb37fe8600e/weather_command-6.1.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-19 23:21:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sanders41",
    "github_project": "weather-command",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "weather-command"
}
        
Elapsed time: 0.22401s