Metadata-Version: 2.1
Name: docsumo
Version: 0.5.8
Summary: Python client for Docsumo
Home-page: https://github.com/docsumo/docsumo_python_client
Author: Docsumo
Author-email: hello@docsumo.com
License: MIT
Description: # Welcome to Docsumo python client documentation!
        [![Documentation Status](https://readthedocs.org/projects/docsumo/badge/?version=latest)](https://docsumo.readthedocs.io/en/latest/?badge=latest)
        
        For detail:
        - [Here is Documentation](https://docsumo.readthedocs.io/en/latest/index.html)  
        - [Postman Documentation](https://documenter.getpostman.com/view/4263853/S11LtdGN)
        
        
        # Install 
        ```bash
        pip3 install docsumo
        ```
        
        # Set API KEY from docsumo setting page as env variable `DOCSUMO_API_KEY` or pass apikey parameter in Docsumo class.
        
        ![APIKeY](https://i.imgur.com/hmOcaYp.png)
        
        ```bash
        export DOCSUMO_API_KEY="test" >>  ~/.bashrc
        source ~/.bashrc
        ```
        
        
        # Example
        ``` py
        from docsumo import Docsumo
        
        doc = Docsumo()
        # OR
        # doc = Docsumo(apikey="fghhGh56HHJ...")
        
        # available method
        doc.user_detail_credit_limit()
        doc.documents_list()
        doc.documents_summary()
        doc.upload_file(
                "./data/invoice.pdf",
                "invoice",
            )
        )
        doc.extracted_data("c511ba245484442fb")
        
        ```
        
        Output:
        ```
        # To get the user detail & credit limit.
        print(doc.user_detail_credit_limit())
        
        {'error': '',
         'error_code': '',
         'message': '',
         'status': 'success',
         'status_code': 200,
         'data': {'email': 'tester@docsumo.com',
                  'full_name': 'Docsumo Tester',
                  'monthly_doc_current': 75,
                  'monthly_doc_limit': 300,
                  'user_id': '5cb45f1f5a841101f703770a'}}
        ```
        ____
Platform: UNKNOWN
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Requires-Python: >=3
Description-Content-Type: text/markdown
