Pybooru Versions Save

Pybooru is a Python package to access to the API of Danbooru/Moebooru based sites

5.0.0.dev1

2 years ago

Build to test setup.py and setup.cfg configuration when publishing to Pypi.

What's Changed

Full Changelog: https://github.com/LuqueDaniel/pybooru/compare/4.2.2...5.0.0.dev1

4.2.2

3 years ago
  • Added 504 error to HTTP_STATUS_CODE #52 by @chlorofomduck.
  • Fixed Danbooru client.favorite_remove() #51 and all 204 responses.

4.2.0

3 years ago

Note: Pybooru 4.2.0 Is the last version that support Python 2.7

  • Add support for Lolibooru #44 by @Nachtalb
  • Add support for safebooru.donmai.us to default sites #37 by @mirukana
  • Add count_posts() function to Danbooru API #35 by @mirukana
  • Replaced all http URLs for https #36 by @mirukana
  • Fixes the file url in the download example #39 by @Luk3M
  • Fixes Moebooru._build_hash_string
  • Small refactors
  • Small fixes

4.2.0b1

3 years ago
  • Fixed package publishing workflow.

4.2.0b0

3 years ago

Testing Release

4.1.0

7 years ago
  • Pybooru: refactored _get_status()
  • Python 3.6 support
  • Fixed PybooruHTTPError
  • Pybooru: now site_name and site_url are @property
  • Remove Pylint references
  • End of Python 2.6 support
  • Danbooru: added post_mark_translated()
  • Danbooru: added post_unvote()
  • Danbooru: added post_flag_show()
  • Danbooru: added post_appeals_show()
  • Danbooru: added post_versions_show()
  • Danbooru: added post_versions_undo()
  • Danbooru: added comment_undelete()
  • Danbooru: added comment_vote()
  • Danbooru: added comment_unvote()
  • Danbooru: added artist_undelete()
  • Danbooru: added tag_show()
  • Danbooru: added tag_udpate()
  • Danbooru: added wiki_delete()
  • New docstring format
  • Added support for Danbooru accounts levels.
  • Refactored api_moebooru.py
  • Code improvements
  • Documentation improvement

4.0.1

7 years ago
  • Minnor changes

4.0.0

7 years ago
  • Added support to Danbooru.
  • Now Danbooru and Moebooru are two separed classes.
  • Pybooru has been refactored.
  • Moebooru (only): added support for API versioning.
  • Added PybooruAPIError exception.
  • Added last_call attribute to Danbooru and Moebooru to store last request information.
  • Examples has been updated.
  • Added documentation to Pybooru (with Sphinx).
  • Added some tools for Pybooru (tools folder)
  • Refactored setup.py.
  • End of Python 3.2.x support.
  • Fixed parameter comparison (python 2.X only)
  • In this version there's a nice amount of improvements.

3.0.1

9 years ago
  • Minors changes

3.0

9 years ago
  • In this version there's a nice amount of code improvements.
  • Added compatibility with Python 3.
  • Pybooru now use requests.
  • Replace "%s" % (foo) for "{0}".format(foo).
  • Improvement code style.
  • Added Travis CI to the project