Pandas
Overview
The library pandas
is commonly used for dealing with datasets/spreadsheets, the class we use uses the main pipy package → pandas
Â
Example Usage
To use the library, you can follow the snippets below
data = [{"header1": 100}, {"header1": 200},]
df = pd.DataFrame(data)
Â
More examples in the official docs
Â
Easy for Jira - Python Automations, 2023