Official CocoyoyoLibrairie API packages
Project description
Cocoyoyo_Librairie_Python_Api
Official Cocoyoyolibrairie Python Api
Search books and users in the cocoyoyolibrairie with this package !
Getting Started:
Install:
pip3 install cocoyoyo-librairie-api
Upgrade:
pip3 install cocoyoyo-librairie-api --upgrade
Starting code:
from pprint import pprint
from cocoyoyo_librairie_api.api import CocoyoyoLibrairie, CocoyoyoLibrairie_Exception
""" If you want to disable the message on init: """
# module = CocoyoyoLibrairie(False)
""" else: """
module = CocoyoyoLibrairie()
# search a book
search = module.search('Petit')
""" Uncomment below to view result """
# pprint(search)
# search a book by his id
search_id = module.search_id(search['resultat_livres'][0]['id'])
""" Uncomment below to view result """
# pprint(search_id)
# search a book by his isbn (WARNING !!! ALL BOOKS FIND WITH THIS METHOD AREN'T NECESSARILY IN THE COCOYOYOLIBRAIRIE)
search_isbn = module.search_isbn(9791035204396)
""" Uncomment below to view result """
# pprint(search_isbn)
search_user = module.search_user('No Token')
""" Uncomment below to view result """
# pprint(search_user)
"""
I want to have doc of library
Uncomment below to view result
"""
# print(module.__doc__)
"""
I want to have doc of search() method
Uncomment below to view result
"""
# print(module.search.__doc__)
""" You can catch exceptions of API: """
try:
search_user = module.search_user('00')
except CocoyoyoLibrairie_Exception as e:
print(f'An exception occurred !\n{e.__class__}: {"".join(e.args)} !')
Links / Developer / Contribute:
CocoyoyoLibrairie Official API made with ❤️ by CAMARM-DEV for CAMARM-DEV, inc
###- Repository ###- Contributors ###- Pypi ###- CAMARM-DEV Website ###- Gitlab Profile ###- Pypi Profile ###- Discord ###- Version History
Copyright 2021 CAMARM-DEV, inc
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
File details
Details for the file cocoyoyo_librairie_api-1.5.7.tar.gz
.
File metadata
- Download URL: cocoyoyo_librairie_api-1.5.7.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/2.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58c922a726af27eac85dd5577fd12bae2f62a5c668c58a1914e92b365b5aafc4 |
|
MD5 | dc439eb74062a3f18a82cd599f238223 |
|
BLAKE2b-256 | 7872db762ddc187dbefe8996cd26cf7344884a3fc9d76cfb1b6e95b32fe755da |