Pybooru is a Python package to access to the API of Danbooru/Moebooru based sites.
Project description
Pybooru - Package for Danbooru/Moebooru API
Pybooru is a Python package to access to the API of Danbooru/Moebooru based sites.
- Version: 4.2.2
- Licensed under: MIT License
Dependencies
- Python: >= 2.7 or Python: >= 3.3
- requests
Installation
from Python Package Index (Pypi)
pip install --user Pybooru
Manual installation
git clone git://github.com/luquedaniel/pybooru.git
cd pybooru
pip install --user -r requirements.txt
sudo python setup.py build
python setup.py install
Examples of use
See More examples.
Danbooru
from pybooru import Danbooru
client = Danbooru('danbooru')
artists = client.artist_list('ma')
for artist in artists:
print("Name: {0}".format(artist['name']))
Login example
from pybooru import Danbooru
client = Danbooru('danbooru', username='your-username', api_key='your-apikey')
client.comment_create(post_id=id, body='Comment content')
Moebooru
from pybooru import Moebooru
client = Moebooru('konachan')
artists = client.artist_list(name='neko')
for artist in artists:
print("Name: {0}".format(artist['name']))
Login example
Default sites
from pybooru import Moebooru
client = Moebooru('konachan', username='your-username', password='your-password')
client.comment_create(post_id=id, comment_body='Comment content')
Not default sites
from pybooru import Moebooru
client = Moebooru('konachan.com', username='your-username', password='your-password',
hash_string='So-I-Heard-You-Like-Mupkids-?--{0}--')
client.comment_create(post_id=id, comment_body='Comment content')
Documentation
You can consult the documentation on Read the Docs
Status
Platform | Master | Develop |
---|---|---|
Linux & OSX (Travis CI) | ||
Windows (AppVeyor) |
Contributing
Feel free to contribute, take a look at CONTRIBUTING.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Pybooru-4.2.2.tar.gz
(20.6 kB
view details)
Built Distribution
File details
Details for the file Pybooru-4.2.2.tar.gz
.
File metadata
- Download URL: Pybooru-4.2.2.tar.gz
- Upload date:
- Size: 20.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3e31bb718753b8ee678fc7b87a9f6a9cf18747066f84efe245d3b25ecb2882f |
|
MD5 | 6f53f2161b5e61704988e3b2b48edd61 |
|
BLAKE2b-256 | 7518149e531601092779ad57e835090f94cdbc6276ec8e71e287c1edf51989da |
File details
Details for the file Pybooru-4.2.2-py2.py3-none-any.whl
.
File metadata
- Download URL: Pybooru-4.2.2-py2.py3-none-any.whl
- Upload date:
- Size: 22.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a855cfa9dbb6d641d81d7bbeb378977345edc466e11b0c32346e9209f2ae4d3b |
|
MD5 | 9616a91d64a6d9c8352c0ff9c8c7324f |
|
BLAKE2b-256 | 9a0d1407f45337349f1614d203cbbf648260f364f8c356caf956040902cbdf78 |