Fill your database with mocked instances.
Project description
Fill your database with mocked instances.
Wrap you ORM model into a ModelWrapper, specify how your fields should look like and then generate how many instances you want of each model.
Installation
pip install fillmydb[peewee] if you plan to use it with peewee models
pip install fillmydb[django] if you plan to use it with djanog models (not implemented yet)
pip install fillmydb[sqlalchemy] if you plan to use it with sqlalchemy models (not implemented yet)
Usage with fake-factory
Generating instances for a single model:
import faker factory = faker.Factory.create() wrapper = ModelWrapper(TestModel) wrapper[TestModel].client_name = FieldSpec(factory.name) wrapper[TestModel].description = FieldSpec(factory.text) wrapper[TestModel].password_hash = FieldSpec(factory.binary, length=25) wrapper[TestModel].email = FieldSpec(factory.email) wrapper[TestModel].visits = FieldSpec(factory.pyint) item = wrapper.generate(100)
Generating instances for multipe models:
from tests.models import User, Post, Like import faker factory = faker.Factory.create() wrapper = ModelWrapper(User, Like, Post) wrapper[User].name = FieldSpec(factory.name) wrapper[User].username = FieldSpec(factory.user_name) wrapper[User].description = FieldSpec(factory.text) wrapper[User].password_hash = FieldSpec(factory.binary, length=25) wrapper[User].email = FieldSpec(factory.email) wrapper[User].visits = FieldSpec(factory.pyint) wrapper[Post].title = FieldSpec(lambda _: "test", 1) wrapper[Post].text = FieldSpec(factory.text) # generating 10 users, 100 likes and 20 posts wrapper.generate(10, 100, 20)
General workflow
Pseudo-code:
initial_to_order_queue()
while models_to_process():
model = get_next_model()
if model.has_unresolved_dependency():
push_back_to_queue(model)
# process model
for _ in range(number_of_instances):
for field in model.fields():
# resolve_field(field)
if field == ForeignKey:
field = get_random_ref_model_instance()
else:
field = resolve_normal()
mark_as_processed(model)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fillmydb-0.1.0.zip.
File metadata
- Download URL: fillmydb-0.1.0.zip
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3e2341c71431f280b632bf9de85289e6e6f0583e431f4a014914c1c28615fc0
|
|
| MD5 |
c4c87e81e58509008b0f37e3ec114c37
|
|
| BLAKE2b-256 |
dc8504c983b8fd8d98b2339dc108bf7bae7e856a606fb6e9f463a035e70950fe
|
File details
Details for the file fillmydb-0.1.0.win-amd64.zip.
File metadata
- Download URL: fillmydb-0.1.0.win-amd64.zip
- Upload date:
- Size: 22.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9422eb5c86c50b53fa9bfebac9341dda9ad633e21fa6c675f3d6a6a31df4742
|
|
| MD5 |
2c4caa820e7f483b0e86e8943c2fc6fb
|
|
| BLAKE2b-256 |
5bbcf855b377bbf969b4a857ac48e33f67d1270f80b0e3f1f8d6ef3b0879b581
|