An (a)sync e621 API wrapper library.
Free software: GNU Lesser General Public License v3 (LGPLv3)
Installation
pip install yippi
You can also install the in-development version with:
pip install git+ssh://git@github.com/rorre/yippi.git@master
Quickstart
Sync
>>> import requests
>>> from yippi import YippiClient
>>>
>>> session = requests.Session()
>>> client = YippiClient("MyProject", "1.0", "MyUsernameOnE621", session)
>>> posts = client.posts("m/m zeta-haru rating:s") # or ["m/m", "zeta-haru", "rating-s"], both works.
[Post(id=1383235), Post(id=514753), Post(id=514638), Post(id=356347), Post(id=355044)]
>>> posts[0].tags
{'artist': ['zeta-haru'],
'character': ['daniel_segja', 'joel_mustard'],
'copyright': ['patreon'],
'general': ['5_fingers', ..., 'spooning'],
'invalid': [],
'lore': [],
'meta': ['comic'],
'species': ['bird_dog', ... ]}
Async
>>> import aiohttp
>>> from yippi import AsyncYippiClient
>>>
>>> session = aiohttp.ClientSession()
>>> client = AsyncYippiClient("MyProject", "1.0", "MyUsernameOnE621", session)
>>> posts = await client.posts("m/m zeta-haru rating:s") # or ["m/m", "zeta-haru", "rating-s"], both works.
[Post(id=1383235), Post(id=514753), Post(id=514638), Post(id=356347), Post(id=355044)]
>>> posts[0].tags
{'artist': ['zeta-haru'],
'character': ['daniel_segja', 'joel_mustard'],
'copyright': ['patreon'],
'general': ['5_fingers', ..., 'spooning'],
'invalid': [],
'lore': [],
'meta': ['comic'],
'species': ['bird_dog', ... ]}
Examples are available in examples directory.
Documentation
Documentation is available on readthedocs: https://yippi.readthedocs.io/
Development
To run the all tests run:
tox
Note, to combine the coverage data from all the tox environments run:
Windows |
set PYTEST_ADDOPTS=--cov-append tox |
|---|---|
Other |
PYTEST_ADDOPTS=--cov-append tox |
Release files for yippi 0.2.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| yippi-0.2.0.1.tar.gz | 16.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| yippi-0.2.0.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 33.5 kB
Release files / yippi-0.2.0.1.tar.gz
| Download URL | yippi-0.2.0.1.tar.gz |
|---|---|
| Size | 16.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c82cf67f3cce5146c5ac6b292e6ffac11d502230ea68fb513f847502150c6615
|
|
BLAKE2b-256 checksum How to use checksums |
8b3f97fe9dd699feaa43d44da1d8c27e569747eeb316bafb16d96066012ae87b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.1.6 CPython/3.9.4 Windows/10
|
Release files / yippi-0.2.0.1-py3-none-any.whl
| Download URL | yippi-0.2.0.1-py3-none-any.whl |
|---|---|
| Size | 17.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
92947d1224ae8b008567e95e0749334ebd6029fd58dd1cf91cfb5c5856782a88
|
|
BLAKE2b-256 checksum How to use checksums |
caf9a2b987fc51eddf836a232a18bdf9fa99850668dc0303872e3e63f96f741f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.1.6 CPython/3.9.4 Windows/10
|