Skip to main content

Generate json text randomly

Project description

ranjg 0.5.1.x — Randomly json generator

ranjg is a package providing functions to generate random JSON data according to JSON-Schema-LIKE object. (It is similar to JSON schema, but does NOT support some keywords. Also see here.)

This package can be used on command line and python code.

Quick Start (on command line)

  1. Install the package with the following command. (Same to usage in python code)

    pip install ranjg
    
  2. Make a schema file. For example (schema.json):

    {
        "type": "object",
        "properties": {
            "name": {
                "type": "string",
                "minLength": 1,
                "maxLength": 32
            },
            "age": {
                "type": "integer",
                "minimum": 0
            },
            "comment": {
                "type": "string",
                "minLength": 1
            }
        },
        "required": ["name", "age"]
    }
    
  3. Execute the package on command line with following command:

    python -m ranjg ./schema.json
    

    Then generated json string will be outputted.

    It generates JSON randomly. So you will get a different result each time you execute it.

Quick Start (in python code)

  1. Install the package with the following command. (Same to usage on command line)

    pip install ranjg
    
  2. Make a python file. For example (generate.py):

    import ranjg
    
    schema = {
        'type': 'object',
        'properties': {
            'name': {
                'type': 'string',
                'minLength': 1,
                'maxLength': 32
            },
            'age': {
                'type': 'integer',
                'minimum': 0
            },
            'comment': {
                'type': 'string',
                'minLength': 1
            }
        },
        'required': ['name', 'age']
    }
    
    generated = ranjg.gen(schema)
    
    print(generated)
    
  3. Execute the python code with following command:

    python generate.py
    

    Then generated json string will be outputted.

    It generates JSON randomly. So you will get a different result each time you execute it.

Document (command line usage)

You can execute ranjg with below command:

python -m ranjg <schema_file_path> [-j <json_output_path> [-n <num>] ] [--options <options_file>] [--list <multiplicity>]

This command generates a JSON string. Each argument has the following meaning:

  • <schema_file_path>: A file path of the JSON-schema-like file. Generated JSON string will be according to this schema. (What's "JSON-schema-like"?)
  • -j <json_output_path> (optional): When it's specified, a generated JSON string will be written to the specified file. When it's not specified, a generated JSON string will be written to stdout.
  • --options <options_file> (optional): It can be specified to use Options. See also Options.
  • --list <multiplicity> (optional): When it's specified, a list of length multiplicity is generated. Each element of the generated list specifies the schema.
  • -n <num> (optional): When it's specified, it repeats the generation num times and output each result to a different file. If you use this option, json_output_path must have placeholder such as {}.

Document (python code usage)

Usually, the following function is used:

def gen(schema: dict = None,
        schema_file: str = None,
        output_file: str = None,
        output_fp = None,
        options: Options = None,
        options_file: str = None) -> str

This function returns a generated JSON string.

Either schema or schema_file must be specified (generated JSON string is according to them). schema is a JSON-schema-like dict and schema_file is the path to a JSON-schema-like file. (What's "JSON-schema-like"?)

When output_file is specified, the generated JSON string will be written to the file of the specified path. When output_fp is specified with a file object opened in write mode, the result will be written to the specified file. You cannot specify output_file and output_fp in the same function call.

options or options_file can be specified to use Options. See also Options.

Supported keywords of schema

This package generates JSON string according to JSON-schema-LIKE object. JSON-schema-LIKE object is like general JSON schema, but it doesN'T SUPPORT some keywords of general JSON schema.

The following keywords can be used in much the same way as in regular JSON schema. (If you want to know the effect of each keyword, please read JSON Schema Reference.)

Supported keywords

  • "type"
    • Allowed: "object", "array", "string", "number", "integer", "boolean", "null" and multiple type.
  • "properties", "required"
  • "items", "minItems", "maxItems", "additionalItems"
  • "pattern", "minLength", "maxLength"
    • Warning: When "pattern" specified, "minLength" and "maxLength" are ignored.
  • "minimum", "maximum", "exclusiveMinimum", "exclusiveMaximum"
  • "enum"

Options

Options allow you to specify generation rules that are not specified in the schema.

See also Options.

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

ranjg-0.5.1.0.tar.gz (22.4 kB view details)

Uploaded Source

Built Distribution

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

ranjg-0.5.1.0-py3-none-any.whl (25.8 kB view details)

Uploaded Python 3

File details

Details for the file ranjg-0.5.1.0.tar.gz.

File metadata

  • Download URL: ranjg-0.5.1.0.tar.gz
  • Upload date:
  • Size: 22.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for ranjg-0.5.1.0.tar.gz
Algorithm Hash digest
SHA256 7d82e879da8228e799f0bdf15ba46c7d5dfaa4df06f66eb3745475232e38fd3e
MD5 556af960d462f020fbb23068ea915919
BLAKE2b-256 13f0e0369e9fb048c798dc003372bf325f5d8fa66e37a574a80f3ebac989ea45

See more details on using hashes here.

File details

Details for the file ranjg-0.5.1.0-py3-none-any.whl.

File metadata

  • Download URL: ranjg-0.5.1.0-py3-none-any.whl
  • Upload date:
  • Size: 25.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for ranjg-0.5.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 06be19f8dfd51294471a284e0c80c23ad2b443ec896505d69824ff07c1385848
MD5 85c909b5185603787f5772e0ef5ce97d
BLAKE2b-256 84ebed8125c31f8c7e5cfccc38aaa8d8d01b46a16e59664c2265485ac8b31bd3

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