Metadata-Version: 2.2
Name: biblionix
Version: 2025.0
Summary: Python client library to interface with Biblionix library systems
Author-email: William Jackson <william@subtlecoolness.com>
Project-URL: Homepage, https://github.com/williamjacksn/python-biblionix
Project-URL: Issues, https://github.com/williamjacksn/python-biblionix/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx

# python-biblionix

Python client library to interface with Biblionix library systems

## Usage

```pycon
>>> import biblionix
>>> # 'library' is the subdomain for your library website
>>> bc = biblionix.BiblionixClient('library')
>>> # username and password you use to sign in to your library website (could be card number instead of username)
>>> bc.authenticate('123456', 'password')
>>> bc.get_account_info()
<Element 'root' at 0x7f5edd54e7a0>
```
