├── .github └── workflows │ └── release.yaml ├── .gitignore ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README.md ├── data ├── iris.csv └── people.csv ├── pyproject.toml ├── python └── farsante │ ├── __init__.py │ ├── h2o_dataset_create.py │ ├── h2o_dataset_create_all.py │ ├── pandas_dfs.py │ ├── pandas_generators.py │ ├── pyspark_dfs.py │ └── pyspark_generators.py ├── src ├── generators.rs ├── helpers.rs ├── lib.rs └── main.rs └── tests ├── __init__.py ├── conftest.py ├── test_fake_file_creation.py ├── test_pandas_dfs.py ├── test_pandas_generators.py ├── test_pyspark_dfs.py └── test_pyspark_generators.py /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/README.md -------------------------------------------------------------------------------- /data/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/data/iris.csv -------------------------------------------------------------------------------- /data/people.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/data/people.csv -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python/farsante/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/python/farsante/__init__.py -------------------------------------------------------------------------------- /python/farsante/h2o_dataset_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/python/farsante/h2o_dataset_create.py -------------------------------------------------------------------------------- /python/farsante/h2o_dataset_create_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/python/farsante/h2o_dataset_create_all.py -------------------------------------------------------------------------------- /python/farsante/pandas_dfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/python/farsante/pandas_dfs.py -------------------------------------------------------------------------------- /python/farsante/pandas_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/python/farsante/pandas_generators.py -------------------------------------------------------------------------------- /python/farsante/pyspark_dfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/python/farsante/pyspark_dfs.py -------------------------------------------------------------------------------- /python/farsante/pyspark_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/python/farsante/pyspark_generators.py -------------------------------------------------------------------------------- /src/generators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/src/generators.rs -------------------------------------------------------------------------------- /src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/src/helpers.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/src/main.rs -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_fake_file_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/tests/test_fake_file_creation.py -------------------------------------------------------------------------------- /tests/test_pandas_dfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/tests/test_pandas_dfs.py -------------------------------------------------------------------------------- /tests/test_pandas_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/tests/test_pandas_generators.py -------------------------------------------------------------------------------- /tests/test_pyspark_dfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/tests/test_pyspark_dfs.py -------------------------------------------------------------------------------- /tests/test_pyspark_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPowers/farsante/HEAD/tests/test_pyspark_generators.py --------------------------------------------------------------------------------