/GelbooruViewer

A python package to fetch beautiful pictures in Gelbooru

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

GelbooruViewer

GelbooruViewer is a python package used to fetch picture info from gelbooru by official api.

Tech

GelbooruViewer contains class GelbooruPicture (a model class of picture info) and GelbooruViewer (a tool to fetch pictures and return list[GelbooruPicture])

Gelbooru uses some algorithm and open source library to enhance performance:

  • threading - use multi-threading to speed up GET method.
  • lru-dict - C-implentment Python LRU cache library

And of course GelbooruViewer itself is open source with a public repository on GitHub.

Installation

Gelbooru requires Python3 3.5+ and requests to run.

Install the dependencies , and install lru-dict by pip or just clone and install it by yourself if you want to use cache ( Experimental ).

In Debian or Ubuntu system

$ sudo apt update && sudo apt install libpython3-dev python3-pip
$ sudo pip3 install lru-dict requests
$ git clone https://github.com/ArchieMeng/GelbooruViewer.git

In other system, just install library list above. I don't know how to operate that in other system. So just add to this readme if u know, and give me a push request.

Sample code

>> from GelbooruViewer import GelbooruPicture, GelbooruViewer
>> viewer = GelbooruViewer()
>> tags = ['1girl', 'long_hair']
>> pictures = viewer.get(tags=tags) # simple get method with official limit=100, only 100 pictures per call.
>> pictures = viewer.get_all(tags=tags, num=500) # multi-threading method with out limit. with cache enabled by default.
>> pictures = viewer.get_all(tags=tags, num=500, use_cache=False) # with cache disabled.
>> for picture in pictures: # print all pictures
...    print(picture) # print picture object, which is an instance of GelbooruPicture.
...
>>

Todos

  • cache request result for more type of params. current version just cache get_all with tags set and pid equal 0
  • make LRU cache drop cache by cache memory size instead of cache amount size

License

GPL-3.0

Free Software, Hell Yeah!