Metadata-Version: 2.1
Name: stashapp-tools
Version: 0.2.16
Summary: A python library for interfacing with a stashapp's API
Home-page: https://github.com/stg-annon/stashapp-tools
Author: stg-annon
Author-email: 14135675+stg-annon@users.noreply.github.com
License: MIT
Description: # stashapp-tools
        This library primarily serves as a API wrapper for [Stash](https://github.com/stashapp/stash) written in python
        
        ## Requirements
        Developed using python 3.10.X with attempts to make things as backwards compatible where possible, if you are having issues please try using python 3.10
        
        ## Installation 
        `pip install stashapp-tools`
        
        ## Usage
        ```python
        import stashapi.log as log
        from stashapi.stashapp import StashInterface
        
        stash = StashInterface({
            "scheme": "http",
            "domain":"localhost",
            "port": "9999",
            "logger": log
        })
        
        scene_data = stash.find_scene(1234)
        log.info(scene_data)
        ```
        This example creates a connection to Stash query's a scene with ID 1234 and prints the result to Stash's logs
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
