Metadata-Version: 2.1
Name: ntropy_sdk
Version: 1.2.1
Summary: SDK for the Ntropy API
Home-page: https://github.com/ntropy-network/ntropy-sdk
Author: David Buchmann
Author-email: david@ntropy.network
License: MIT license
Description: # Ntropy SDK
        
        SDK for the Ntropy API
        
        Usage:
        
        ```python
        import os
        from ntropy_sdk.ntropy_sdk import SDK, Transaction
        
        sdk = SDK(os.getenv("NTROPY_API_KEY"))
        
        transaction = Transaction(
            amount=1.0,
            description="AMAZON WEB SERVICES AWS.AMAZON.CO WA Ref5543286P25S: Crd15",
            entry_type="debit",
            entity_id="1",
        )
        
        batch = sdk.classify_batch([transaction])
        enriched_list = batch.wait_with_progress()
        print("BATCH", enriched_list.transactions[0].labels)
        
        enriched = sdk.classify_realtime(transaction)
        print("REALTIME:", enriched.labels)
        ```
        
        * Free software: MIT license
        
        
        
Keywords: ntropy_sdk
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
