Metadata-Version: 2.1
Name: LibLynx
Version: 0.2
Summary: Python Library to interact with LibLynx
Home-page: https://gitlab.com/brillpublishers/code/liblynx
Author: Etienne Posthumus
Author-email: posthumus@brill.com
License: MIT
Description: # liblynx
        
        Python Library to interact with LibLynx https://www.liblynx.com/
        
        Usage example:
        
        ```
        import liblynx
        
        CLIENT_ID = "< your ID >"
        CLIENT_SECRET = "< your SECRET >"
        
        access_token = liblynx.access_token(CLIENT_ID, CLIENT_SECRET)
        api = liblynx.endpoint(access_token)
        assert "_links" in api
        
        liblynx.new_identification(access_token, api, "127.0.0.127", "https://example.com/foo/", "Python-LibLynx-Testing/0.1")
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
