https://github.com/nazliander/random-data-generator
Random data generator for mock applications, tutorials or demos.
https://github.com/nazliander/random-data-generator
Last synced: 8 days ago
JSON representation
Random data generator for mock applications, tutorials or demos.
- Host: GitHub
- URL: https://github.com/nazliander/random-data-generator
- Owner: nazliander
- License: mit
- Created: 2023-01-14T14:04:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-14T15:50:48.000Z (almost 3 years ago)
- Last Synced: 2023-03-06T20:18:27.881Z (almost 3 years ago)
- Language: Python
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Random Data Generator
This is a mock application that aims to provide random data for API calls or Kafka applications.
You can use the mock application for your tutorials. It provides a CLI interface and a basic Flask setup.
## Example Cases
To install the project:
```bash
pip install poetry && poetry export --output=requirements.txt && pip install -e .
```
You can then start using the CLI tool:
```bash
data-producer payouts
```
Docker is also available as in:
```bash
docker build . -t random-data-generator
docker run --name data-generator --rm -it random-data-generator data-producer payouts
```