Metadata-Version: 2.1
Name: bingwallpaperpy
Version: 0.1.2
Summary: Download script for Bing daily wallpapers.
License: GPL-v3
Author: Jens Korinth
Author-email: jkorinth@gmx.net
Requires-Python: >=3.7,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: black (>=23.3.0,<24.0.0)
Requires-Dist: pillow (>=9.4.0,<10.0.0)
Requires-Dist: requests (>=2.28.2,<3.0.0)
Description-Content-Type: text/markdown

# Bing Wallpaper download script

Downloads the nice daily wallpaper from Bing and prints the file
location on the command line (e.g., to pass to `feh`).

## Installing
This script is available on pypi.org. Simply use
```sh
pip install bingwallpaper
```.

## Running
The script is called `bingwallpaper`; when run without options,
it will simply output the filename of the downloaded image,
which will be `~/Downloads/bingwallpaper.png` if `~/Downloads`
exists and is accessible, or `/tmp/bingwallpaper.png` else.

## Building
Simplest way is using `poetry`:

```sh
poetry build
```

This will create a `dist` dir in the root directory containing
a `.whl` and a `.tar.gz`. You can install the `.whl` by using
`pip`:

```sh
pip install dist/*.whl
```


