Metadata-Version: 2.1
Name: lucidtech-las
Version: 3.2.6
Summary: Python SDK for Lucidtech AI Services
Home-page: https://github.com/LucidtechAI/las-sdk-python
Author: Lucidtech
Maintainer: August Kvernmo
Maintainer-email: august@lucidtech.ai
License: Apache 2.0
Description: # Python SDK for Lucidtech AI Services API
        
        ![Github Actions build status](https://github.com/LucidtechAI/las-sdk-python/workflows/main/badge.svg)
        
        ## Documentation
        
        [Link to docs](https://docs.lucidtech.ai/python/v1/index.html)
        
        ## Installation
        
        ```bash
        $ pip install lucidtech-las
        ```
        
        ## Usage
        
        ### Preconditions
        
        - Documents must be in upright position
        - Only one receipt or invoice per document is supported
        - Supported file formats are: jpeg, pdf
        
        ### Quick start
        
        ```python
        import json
        from las import ApiClient
        
        api_client = ApiClient('<api endpoint>')
        prediction = api_client.predict('document.pdf', model_name='invoice')
        print(json.dumps(prediction, indent=2))
        ```
        
        ## Contributing
        
        ### Prerequisites
        
        ```bash
        $ pip install tox
        ```
        
        ### Run tests
        
        ```bash
        $ tox tests/test_config.cfg
        ```
        
        ### Create docs
        
        ```bash
        $ tox -e docs .docsout
        ```
        
Platform: Posix; MacOS X; Windows
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet
Description-Content-Type: text/markdown
