Quick Start
Install egytech_api
pip install egytech_apiMake your first API request
Create a Participants Client Instance
Participants Client Instancefrom egytech_api.core import Participants
# Create a Participants object
participants = Participants(title="backend", cs_degree=True)Export Your Data to a pandas.DataFrame Instance
pandas.DataFrame Instance# Export the data as pandas.DataFrame
df = participants.get_df()
# Print the first 5 rows of the dataframe
df.head()Output of the above code snippet:
Last updated