Skip to main content

Add your description here

Project description

Factoreally

Generate realistic test data from real data patterns.

Factoreally involves two steps:

  1. Analyze sample data → create a factory spec based on input data
  2. Use the factory spec → generate realistic data based on the factory spec

It automatically detects patterns (UUIDs, timestamps, email formats, numeric distributions) and generates statistically accurate test data that matches your real data.

Features

  • Pattern detection: UUIDs, timestamps, emails, phone numbers, custom formats
  • Statistical accuracy: Maintains distributions and value frequencies
  • Dynamic objects: Detects and generates varying dictionary keys
  • Null handling: Preserves optional field probabilities
  • Batch generation: Efficiently generate thousands of records

Quick Start

1. Analyze sample data to create a factory spec

# Basic spec generation
factoreally create --in real_user_payloads.json --out user.spec.json

# With Pydantic model to identify dynamic dictionary fields
factoreally create \
  --in user_payloads.json \
  --out user.spec.json \
  --model myapp.models.UserModel

2. Use the factory spec to generate data

from factoreally import Factory

# Create factory from spec
user_factory = Factory("user.spec.json")

# Generate single object
user_data = user_factory.build()

# Generate batch
users = user_factory[:1000]

# Integrate with Pydantic models
user = UserModel.model_validate(user_factory.build())

Customization

# Create factory with built-in overrides
admin_factory = Factory(spec, role="admin", permissions__level="high")

# Per-generation overrides
user = user_factory.build(email="specific@example.com")

# Nested field overrides
user = user_factory.build(address__country="US", profile__verified=True)

# Array element overrides
user = user_factory.build(items__name="default", items__value=None)  # override all array elements
user = user_factory.build(items__0__name="first", items__0_value=1) # override specific array index

# Dynamic overrides with callables
user = user_factory.build(
    id=lambda: str(uuid.uuid4()),  # Generate new value
    name=lambda value: value.upper(),  # Transform generated value
    display_name=lambda value, obj: f"{value} ({obj['role']})"  # Use context of entire generated object
)

Pydantic Integration

Provide a Pydantic model to help identify dynamic dictionary fields:

class UserEvent(BaseModel):
    user_id: str
    metadata: dict[str, str]  # Factoreally treats this as dynamic dict
factoreally create --in events.json --out events.spec.json --model myapp.models.UserEvent

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

factoreally-0.6.0.tar.gz (87.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

factoreally-0.6.0-py3-none-any.whl (47.0 kB view details)

Uploaded Python 3

File details

Details for the file factoreally-0.6.0.tar.gz.

File metadata

  • Download URL: factoreally-0.6.0.tar.gz
  • Upload date:
  • Size: 87.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.6.5

File hashes

Hashes for factoreally-0.6.0.tar.gz
Algorithm Hash digest
SHA256 2f69b78b624af060a4d43965640106962fdb0ee0da33478ef9adc699065b6b75
MD5 7c17ad6e3bc779315ff150ad843b97d1
BLAKE2b-256 121ab6db22b42d802437673e373c028796b3f0b8730667e868b7804de9d19431

See more details on using hashes here.

File details

Details for the file factoreally-0.6.0-py3-none-any.whl.

File metadata

File hashes

Hashes for factoreally-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bb72e9ac54c4da2cc1a538194cfb60c95e4cc9f36e4cd4e2f13bb8be3b1be268
MD5 fbb80167299b70beb932dffd75f120b2
BLAKE2b-256 9997136abbc7fb2dc27ce4cdb854bced0aedba0df7ab9e10ef87c7a997c02c6d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page