Skip to content
/ jsf Public
forked from ghandic/jsf

Creates fake JSON files from a JSON schema

License

Notifications You must be signed in to change notification settings

abraha2d/jsf

This branch is 31 commits behind ghandic/jsf:main.

Folders and files

NameName
Last commit message
Last commit date
May 29, 2023
Jan 7, 2023
Jan 7, 2023
Jan 20, 2023
Apr 8, 2021
Jan 7, 2023
Jan 7, 2023
Jan 7, 2023
Jan 2, 2023
Jan 7, 2023
Jan 20, 2023
Apr 8, 2021
Jan 7, 2023
Jan 2, 2023
Jan 2, 2023
Jan 8, 2023
Jan 2, 2023

Repository files navigation

jsf

Coverage Docs PyPI Latest Release
License Code style: black

Use jsf along with fake data generators to provide consistent and meaningful fake data for your system.

Main Features

  • Provides out of the box data generation from any JSON schema πŸ“¦
  • Extendable custom data providers using any lambda functions πŸ”—
  • Multi level state for dependant data (eg multiple objects sharing value, such as children with same surname) πŸ€“
  • Inbuilt validation of fake JSON produced βœ…
  • In memory conversion from JSON Schema to Pydantic Models with generated examples 🀯
  • Seamless integration with FastAPI πŸš€

Installation

$ pip install jsf

---> 100%

Usage

Basic 😊

from jsf import JSF

faker = JSF(
    {
        "type": "object",
        "properties": {
            "name": {"type": "string", "$provider": "faker.name"},
            "email": {"type": "string", "$provider": "faker.email"},
        },
        "required": ["name", "email"],
    }
)

fake_json = faker.generate()

Results in ...

{
    'name': 'Jesse Phillips', 
    'email': 'xroberson@hotmail.com'
}

From JSON file πŸ“

from jsf import JSF

faker = JSF.from_json("demo-schema.json")
fake_json = faker.generate()
Or run stright from the commandline...

Native install

pip install jsf[cli]
jsf --schema jsf/tests/data/custom.json --instance wow.json

Docker

docker run -v $PWD:/data challisa/jsf jsf --schema /data/custom.json --instance /data/example.json

FastAPI Integration πŸš€

Create a file main.py with:

from jsf import JSF
from fastapi import FastAPI

app = FastAPI(docs_url="/")
generator = JSF.from_json("custom.json")


@app.get("/generate", response_model=generator.pydantic())
def read_root():
    return generator.generate()

Run the server with:

$ uvicorn main:app --reload

INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
INFO:     Started reloader process [28720]
INFO:     Started server process [28722]
INFO:     Waiting for application startup.
INFO:     Application startup complete.

Navigate to http://127.0.0.1:8000 and check out your endpoint. Notice the following are all automatically created:

  • Schema with descriptions and examples
  • Example response
  • Data generation by clicking "try it out"

Example Swagger UI - Page 1 Example Swagger UI - Page 2 Example Swagger UI - Page 3 Example Swagger UI - Page 4

Partially supported features

  • string contentMediaType - only a subset of these are supported, however they can be expanded within this file

Credits

  • This repository is a Python port of json-schema-faker with some minor differences in implementation.

License

About

Creates fake JSON files from a JSON schema

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 73.7%
  • Shell 23.9%
  • Starlark 1.9%
  • Other 0.5%