Metadata-Version: 2.1
Name: captn_nanobit_client
Version: 0.0.3
Summary: Project for captn-nanobit client
Home-page: https://captn.ai/
Author: Kumaran Rajendhiran
Author-email: kumaran@airt.ai
License: Apache Software License 2.0
Description: # Capt'n AI for Nanobit
        > Marketing campaigns optimization
        
        
        ## Install
        
        `pip install captn-nanobit-client`
        
        ## How to use 
        
        
        ```python
        from captn_nanobit_client.api import authorize, predict
        from captn_nanobit_client.testing import get_test_dataframe
        
        # server is one of "staging" or "production"
        server = "staging"
        
        token = authorize(username=username, password=password, server=server)
        ```
        
        Get pandas dataframe
        
        ```python
        
        df = get_test_dataframe()
        ```
        
        Run the code below to make a prediction
        
        ```python
        prediction = predict(df, token=token)
        ```
        
Keywords: captn,nanobit,airt,airt.ai
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
