Metadata-Version: 2.1
Name: askdata
Version: 0.4.311
Summary: A library for creating a client for interacting with Askdata
Home-page: https://github.com/AskdataInc/askdata-api-python-client
Author: ['Giuseppe De Maio', 'Matteo Giacalone']
Author-email: datascience@askdata.com
License: Apache License 2.0
Description: # Askdata python client
        
        <h1 align="center">
        	<img width="300" src="https://uploads-ssl.webflow.com/5dff758010bfa7f94c98e37e/5e9b0ff61b847f206e4c8da8_askdata-logo-black-p-500.png" alt="Askdata">
        	<br>
        	<br>
        </h1>
        
        Askdata python client is a friendly Python library that helps developers, data scientists and engineers build and manage agent using Askdata platform.
        
        There are three main use cases for this library:
        
        1) Query an agent using natural language queries
        2) Create a dataset
        3) Connect an agent to a dataset
        
        For more information, see [Askdata's website](https://askdata.com).
        
        # Askdata Examples
        [![Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/AskdataInc/askdata-examples/blob/master/notebooks/Askdata%20-%20Quickstart.ipynb)
        This repository contains examples of [Askdata](https://www.askdata.com/) usage in serving different types of data.
        ## Installation
        ``
         pip install askdata 
        ``
        or
        ``
        pip install -r requirements.txt
        ``
        ## Authentication
        Lets handle our authenticaton
        ```python
        from askdata.askdata_client import Askdata, Agent
        askdata = Askdata()
        ```
        Once your insert your account and password you're all set
        ## Query your data
        ```python
        # Load the list of the agents connected to your account as a pandas dataframe
        get_agents_df = askdata.agents_dataframe()
        #get one agent
        agent = Agent(askdata, 'Sales Demo')
        # Simple query
        df = agent.ask('give me sales by countries')
        df
        ```
        ## Create a new Askbase and Create a dataset
        ```python
        # Load the list of the agents connected to your account as a pandas dataframe
        my_second_agent.save_to_dataset(frame=df, dataset_name='Web Sources')
        ```
        ## Askdata Demo
        Check the following tutorial, to learn more about Askdata end-to-end. 
        [![Askdata Tutorial](https://img.youtube.com/vi/uEc9ogi2-10/0.jpg)](https://youtu.be/uEc9ogi2-10) 
        
        ## Get in Touch
        There are several ways to get in touch with us:
        
        * [Contact us](https://www.askdata.com/contact)
        * Email us at: datascience@askdata.com
        * Email us at: info@askdata.com
Keywords: nlp
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Requires-Python: >=3, <4
Description-Content-Type: text/markdown
