Examples of Askdata usage in serving different types of data
This repository contains examples of Askdata usage in serving different types of data. Installation pip install askdata orpip 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’) […]
Read more