A Python wrapper for BookStack's API
Project description
bookstack
A Python wrapper for BookStack's API
Current version: 0.2.0-post1
Installation
To install bookstack
, run:
pip install bookstack
Setup
To use BookStack's API, you'll need to get a token ID and secret.
You can find how to get these values from your BookStack instance's doc page at http[s]://<example.com>/api/docs
Note: Your account's user group must have API usage priveleges enabled.
Usage
Once you've acquired your token ID and secret, you're ready to rock.
>>> import bookstack
# Input the appropriate values for these three variables
>>> base_url = 'http[s]://<example.com>'
>>> token_id = '<token_id>'
>>> token_secret = '<token_secret>'
>>> api = bookstack.BookStack(base_url, token_id=token_id, token_secret=token_secret)
This wrapper dynamically generates its API calls at runtime. To have the wrapper generate the methods, use:
>>> api.generate_api_methods()
>>> api.available_api_methods
{'get_books_export_pdf', 'get_shelves_list', 'post_books_create', 'get_docs_display', 'delete_shelves_delete', 'get_books_list', 'get_docs_json', 'delete_books_delete', 'get_books_read', 'get_shelves_read', 'put_books_update', 'get_books_export_plain_text', 'get_books_export_html', 'post_shelves_create', ...}
The above are then the methods available to you, for example:
>>> books_list = api.get_books_list()
>>> books_list['data'][0]['name']
'Mathematics'
And to POST you can follow this example:
>>> api.post_books_create({'name': 'Sample Book', 'description': 'Sample Description', 'tags': [{ 'name': 'Sample-Name', 'value': 'Sample-Value' }] })
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 bookstack-0.2.0.post1.tar.gz
.
File metadata
- Download URL: bookstack-0.2.0.post1.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0b8be2646fa5d130c2a238c8ebc6c1ddd3acf457c9afdea01798ef25bce6a82 |
|
MD5 | dfbf323e5ab6f4161f9cfc86ba411a7f |
|
BLAKE2b-256 | de187c4ea915b475d9cd3eff835c67bd39b27f1f8cf54e31488a14137c7de924 |