Skip to content

Leo-Ryu/askdata-api-python-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Askdata

Askdata Examples

Colab This repository contains examples of Askdata usage in serving different types of data.

Installation

pip install askdata or pip install -r requirements.txt

Authentication

Lets handle our authenticaton

from askdata import Askdata
askdata = Askdata()

Once your insert your account and password you're all set

Query your data

# Load the list of the agents connected to your account as a pandas dataframe
get_agents_df = askdata.agents_dataframe()
#get one agent
agent = askdata.agent("sales_demo")
# Simple query
df = agent.ask('give me sales by countries')
df

Create a new Workspace (agent) and Create a dataset Starting from a Dataframe

# Load the list of the agents connected to your account as a pandas dataframe
agent.create_dataset(frame=df, dataset_name='Web Sources')

Reference Docs

https://docs.contour.so/AskdataHQ/askdata-api-python-client/getting-started

Askdata Demo

Check the following tutorial, to learn more about Askdata end-to-end. Askdata Tutorial

About

The best way to use Python and Askdata

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published