A Python wrapper for the Mockaroo API π¦ + π.
Install this tool using uv:
uv add mockaroo-python
To use this library, you'll need an API key from the Mockaroo website.
Set your key as an environment variable:
export MOCKAROO_API_KEY=<api_key>or pass it to the Client class as an argument:
client = Client(api_key="api_key")Use the library in your Python script or from the command-line.
Command-Line:
For help, run:
mockaroo --helpYou can also use:
python -m mockaroo --helpGenerate a dataset:
mockaroo gen Person # your own schema in Mockaroo
[
{
"id": 1,
"first_name": "Burch",
"last_name": "Minichi"
},
{
"id": 2,
"first_name": "Val",
"last_name": "Curzon"
},
{
"id": 3,
"first_name": "Poppy",
"last_name": "Pallant"
}
]Write data to a file format (JSON, CSV, TXT, XML, or SQL):
mockaroo gen Person --count 5 >> people.jsonUpload a file to Mockaroo:
mockaroo upload customers customers.csvDelete a file:
mockaroo delete customersCheck the available Mockaroo types:
mockaroo typesPython Script:
from mockaroo import Client
# Initialize the client with your API key
client = Client(api_key="your_api_key_here")
# Or set an enviornment variable. `export API_KEY=your_api_key_here`
client = Client()
# Fetch available types from Mockaroo
types = client.types()
# Upload a dataset ('csv' or 'txt') to Mockaroo
client.upload(name="name_of_dataset", path="/path/to/file.csv")
# Remove a dataset from Mockaroo
client.delete(name="name_of_dataset")
# Generate data using a predefined schema
data = client.generate(schema="name_of_schema")
# Alternatively, specify fields to generate custom data
data = client.generate(
fields=[
{"name": "city", "type": "City"},
{"name": "street_name", "type": "Street Name"}
]
)To generate data based on a schema you've created, specify the schema name as an argument.
Example:
from mockaroo import Client
client = Client()
data = client.generate(schema="Person")
print(data)
{'id': 1, 'first_name': 'Patrizius', 'last_name': 'Van'}Pass a list of field definitions to generate mock data with custom fields. For a full list of available types, see the Official API Reference Page.
Example:
result = client.generate(
count=2,
fields=[
{
"name": "id",
"type": "Row Number"
},
{
"name":"transactionType",
"type": "Custom List",
"values": ["credit","debit"]
}
]
)
print(result)
[{'id': 1, 'transactionType': 'credit'}, {'id': 2, 'transactionType': 'debit'}]To contribute to this tool, first checkout the code. Then create a new virtual environment:
cd mockaroo-python
uv sync --dev
To run the tests:
uv run pytest