https://github.com/patmaz/mocker
data mocking app
https://github.com/patmaz/mocker
flask python
Last synced: about 2 months ago
JSON representation
data mocking app
- Host: GitHub
- URL: https://github.com/patmaz/mocker
- Owner: patmaz
- Created: 2018-10-24T20:15:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-27T09:59:31.000Z (over 7 years ago)
- Last Synced: 2025-11-05T14:32:43.196Z (8 months ago)
- Topics: flask, python
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mocker app
##The app for generating mock data.
To try it, send a POST request to the `https://mocker-app.herokuapp.com/mock` endpoint. The payload should contain a `number` of items that you want to generate and a `model` of each item (see fields available below).
```
{
"number": 5,
"model": {
"name": "name",
"text": "paragraph",
"sentence": "sentence",
"address": "address",
"company": "company"
}
}
```