Metadata-Version: 2.1
Name: bugout
Version: 0.0.5
Summary: Python client library for Bugout API
Home-page: https://github.com/bugout-dev/bugout-python
Author: Bugout
Author-email: engineering@bugout.dev
License: MIT
Description: # bugout-python
        Python client library for Bugout API
        
        ```python
        from bugout.app import Bugout
        
        def main():
            bugout = Bugout(brood_api_url="http://localhost:9001", spire_api_url="http://localhost:9002")
            user = bugout.get_user("<user token id>")
            group = bugout.get_group("<user token id>", "<group id>")
        
        if __name__ == "__main__":
            main()
        ```
        
Platform: all
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
