├── .github └── workflows │ └── mdbook.yml ├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── benchmarks ├── Makefile ├── ch3_fetch_api.md ├── ch4_offline_benchmark.md ├── ch4_serialized.md └── ch5.md ├── lib ├── .gitignore ├── PFW_2016_2020_public.7z ├── big_payload.json ├── birds.7z └── species_code.csv ├── rust4data-book ├── .gitignore ├── Makefile ├── book.toml ├── src │ ├── AUTHOR.md │ ├── SUMMARY.md │ ├── Transforming Data.md │ ├── chapter_1.md │ ├── chapter_2.md │ ├── chapter_3.md │ ├── chapter_4.md │ ├── chapter_5.md │ ├── chapter_6.md │ └── ideas.md └── theme │ └── head.hbs ├── wxpy ├── .gitignore ├── pyproject.toml └── wxpy │ ├── __init__.py │ ├── ch3 │ ├── __init__.py │ └── fetch_api.py │ ├── ch4 │ ├── serialized.py │ ├── serialized_benchmark.py │ └── serialized_offline_benchmark.py │ └── ch5 │ ├── ch5.py │ └── ch5_pandas.py └── wxrs ├── .gitignore ├── Cargo.toml └── src ├── bin ├── ch3.rs ├── ch4.rs ├── ch4_benchmark.rs ├── ch4_offline_benchmark.rs └── ch5.rs └── main.rs /.github/workflows/mdbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/.github/workflows/mdbook.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/benchmarks/Makefile -------------------------------------------------------------------------------- /benchmarks/ch3_fetch_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/benchmarks/ch3_fetch_api.md -------------------------------------------------------------------------------- /benchmarks/ch4_offline_benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/benchmarks/ch4_offline_benchmark.md -------------------------------------------------------------------------------- /benchmarks/ch4_serialized.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/ch5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/benchmarks/ch5.md -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/PFW_2016_2020_public.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/lib/PFW_2016_2020_public.7z -------------------------------------------------------------------------------- /lib/big_payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/lib/big_payload.json -------------------------------------------------------------------------------- /lib/birds.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/lib/birds.7z -------------------------------------------------------------------------------- /lib/species_code.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/lib/species_code.csv -------------------------------------------------------------------------------- /rust4data-book/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /rust4data-book/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/Makefile -------------------------------------------------------------------------------- /rust4data-book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/book.toml -------------------------------------------------------------------------------- /rust4data-book/src/AUTHOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/src/AUTHOR.md -------------------------------------------------------------------------------- /rust4data-book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/src/SUMMARY.md -------------------------------------------------------------------------------- /rust4data-book/src/Transforming Data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/src/Transforming Data.md -------------------------------------------------------------------------------- /rust4data-book/src/chapter_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/src/chapter_1.md -------------------------------------------------------------------------------- /rust4data-book/src/chapter_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/src/chapter_2.md -------------------------------------------------------------------------------- /rust4data-book/src/chapter_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/src/chapter_3.md -------------------------------------------------------------------------------- /rust4data-book/src/chapter_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/src/chapter_4.md -------------------------------------------------------------------------------- /rust4data-book/src/chapter_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/src/chapter_5.md -------------------------------------------------------------------------------- /rust4data-book/src/chapter_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/src/chapter_6.md -------------------------------------------------------------------------------- /rust4data-book/src/ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/src/ideas.md -------------------------------------------------------------------------------- /rust4data-book/theme/head.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/rust4data-book/theme/head.hbs -------------------------------------------------------------------------------- /wxpy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxpy/.gitignore -------------------------------------------------------------------------------- /wxpy/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxpy/pyproject.toml -------------------------------------------------------------------------------- /wxpy/wxpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wxpy/wxpy/ch3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wxpy/wxpy/ch3/fetch_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxpy/wxpy/ch3/fetch_api.py -------------------------------------------------------------------------------- /wxpy/wxpy/ch4/serialized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxpy/wxpy/ch4/serialized.py -------------------------------------------------------------------------------- /wxpy/wxpy/ch4/serialized_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxpy/wxpy/ch4/serialized_benchmark.py -------------------------------------------------------------------------------- /wxpy/wxpy/ch4/serialized_offline_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxpy/wxpy/ch4/serialized_offline_benchmark.py -------------------------------------------------------------------------------- /wxpy/wxpy/ch5/ch5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxpy/wxpy/ch5/ch5.py -------------------------------------------------------------------------------- /wxpy/wxpy/ch5/ch5_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxpy/wxpy/ch5/ch5_pandas.py -------------------------------------------------------------------------------- /wxrs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxrs/.gitignore -------------------------------------------------------------------------------- /wxrs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxrs/Cargo.toml -------------------------------------------------------------------------------- /wxrs/src/bin/ch3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxrs/src/bin/ch3.rs -------------------------------------------------------------------------------- /wxrs/src/bin/ch4.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxrs/src/bin/ch4.rs -------------------------------------------------------------------------------- /wxrs/src/bin/ch4_benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxrs/src/bin/ch4_benchmark.rs -------------------------------------------------------------------------------- /wxrs/src/bin/ch4_offline_benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxrs/src/bin/ch4_offline_benchmark.rs -------------------------------------------------------------------------------- /wxrs/src/bin/ch5.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PedramNavid/rust-for-data/HEAD/wxrs/src/bin/ch5.rs -------------------------------------------------------------------------------- /wxrs/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | --------------------------------------------------------------------------------