-
Install Homebrew The Missing Package Manager for macOS (or Linux) — Homebrew
-
Download Miniforge3
-
Install Miniforge3 and restart your terminal as soon as the installation finishes:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Any, Dict, List | |
| import s3fs | |
| from pyarrow import Table, parquet as pq | |
| from pandas import DataFrame, Series | |
| def to_df(data: List[Dict[str, Any]]) -> DataFrame: | |
| df = DataFrame() | |
| for item in data: | |
| indexes = [] | |
| values = [] |
OlderNewer