├── .gitignore ├── .python-version ├── README.md ├── data └── weather_stations.csv ├── poetry.lock ├── pyproject.toml └── src ├── create_measurements.py ├── using_bash_and_awk.sh ├── using_dask.py ├── using_duckdb.py ├── using_pandas.py ├── using_polars.py ├── using_python.py └── using_python_old.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12.1 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/README.md -------------------------------------------------------------------------------- /data/weather_stations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/data/weather_stations.csv -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/create_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/src/create_measurements.py -------------------------------------------------------------------------------- /src/using_bash_and_awk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/src/using_bash_and_awk.sh -------------------------------------------------------------------------------- /src/using_dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/src/using_dask.py -------------------------------------------------------------------------------- /src/using_duckdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/src/using_duckdb.py -------------------------------------------------------------------------------- /src/using_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/src/using_pandas.py -------------------------------------------------------------------------------- /src/using_polars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/src/using_polars.py -------------------------------------------------------------------------------- /src/using_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/src/using_python.py -------------------------------------------------------------------------------- /src/using_python_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgalvao/One-Billion-Row-Challenge-Python/HEAD/src/using_python_old.py --------------------------------------------------------------------------------