Metadata-Version: 2.1
Name: comto_dadata
Version: 1.0.2
Summary: Package for working with the "dadata.ru" service
Home-page: http://commercito.ru
Author: Commer Cito
Author-email: commercito@gmail.com
License: UNKNOWN
Description: # DaData Commercito
        Package for working with the "dadata.ru" service
        
        Пакет для работы с сервисом "dadata.ru"
        
        ## Installation
        For correct installation, specify the version  
        Для корректной установки указывайте версию
        
        `pip install comto-dadata==1.0.1`
        
        ## Using
        
        ### Company (Поиск компаний)
        ```python
        from comto_dadata import company
        
        payload = {
            'query': 'Иванов Александр',
            'count': 20,
            'status': ["ACTIVE"],
            'locations': [{"kladr_id": "1300000100000"}],
        }
        
        res = company.suggest('your-token', payload)
        ```
        
        ### Profile (Личный кабинет)
        
        ```python
        from comto_dadata import profile
        
        stat = profile.stat('your-token', 'your-secret')
        balance = profile.balance('your-token', 'your-secret')
        version = profile.version('your-token')
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
