Metadata-Version: 2.1
Name: no-spark-in-my-home
Version: 1.0.2
Summary: Yet another Python package for data generation
Author: nomilkinmyhome
Author-email: scripthound <grinkiko@gmail.com>
Project-URL: Homepage, https://github.com/NorthShine/datahack-test-data-generating
Keywords: fake,data,generator
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pyspark
Requires-Dist: pandas
Requires-Dist: mimesis

# Fake data generator

This package generates fake sql-like format data from predefined schema.
Data schema is defined using dataclasses. 

# Installation

`
python -m pip install no_spark_in_my_home
`

# Usage

```python
from no_spark_in_my_home.src.generator import FakeDataGenerator
# your code
```

# Building your own package version

In case you want to build your own package version you should follow
this [guide](https://python-packaging-tutorial.readthedocs.io/en/latest/setup_py.html).

And then just build a wheel and install it.

# Making and publishing a new release

1. Update release version in pyproject.toml and setup.py
2. Build package with `python -m build`
3. Publish package with `twine upload dist/*`
