Metadata-Version: 2.1
Name: pyimgbox
Version: 1.0.2
Summary: Upload images to imgbox.com
Home-page: https://github.com/plotski/pyimgbox
Author: plotski
Author-email: plotski@example.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Intended Audience :: Developers
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: httpx (==0.16.*)
Requires-Dist: beautifulsoup4

Python 3.6+ library for uploading images to [https://imgbox.com/](imgbox.com).

The CLI tool was moved to [imgbox-cli](https://github.com/plotski/imgbox-cli).

### Installation

pyimgbox is on [PyPI](https://pypi.org/project/pyimgbox/).

```sh
$ pip install pyimgbox
```

### Usage

```python
async with pyimgbox.Gallery(title="Hello, World!") as gallery:
    async for submission in gallery.add(files):
        pprint.pprint(submission)
```

See [examples.py](examples.py) for more examples.


