Skip to main content

Just another Data Offline Generator

Project description

https://github.com/petrnymsa/jdog/workflows/build-test/badge.svg https://readthedocs.org/projects/jdog/badge/?version=latest

Just another Data Offline Generator (JDOG) 🐶

🗎 Full documentation.

  • JDOG is Python library which helps generate sample data for your projects.

  • JDOG can be run also as CLI tool.

  • For generating sample data, the data scheme is provided

  • The scheme is in JSON format

Scheme

  • Scheme is provided in JSON format with special placeholders.

  • Placeholder is something like variable, where generated data will be replaced.

  • Output is nearly the same as scheme besides replaced placeholders.

In the simplest form, given JSON scheme

{
    "name": "Bob",
    "age" : "18"
}

is valid scheme although no additional generation will proceed.

The simplest example can be

{
    "name": "Bob",
    "age": "{{number(18,100)}"
}

which produce Bob with any age between <18, 99> e.g:

{
    "name": "Bob",
    "age": 26
}

More useful example

{
    "{{range(people, 4)}}": {
        "name": "{{first_name}}",
        "age" : "{{number(18, 100)}}"

    }
}

generates array of size 4 with objects containing name and age. The result

{
    "people": [{
            "name": "Bob",
            "age": "18"
        },
        {
            "name": "Alice",
            "age": 25
        },
        {
            "name": "George",
            "age": 85
        },
        {
            "name": "Janice",
            "age": 34
        }
    ]
}

TODO - faker info

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

jdog-0.1.0.tar.gz (9.8 kB view details)

Uploaded Source

File details

Details for the file jdog-0.1.0.tar.gz.

File metadata

  • Download URL: jdog-0.1.0.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5

File hashes

Hashes for jdog-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c0bd2f5757600b3b6563b72f49aaa4911099707beace1310da610d22c76f42cb
MD5 215ee762d6a100ff1214c791a7638593
BLAKE2b-256 0a63f879768de79deba15e31c21eb1d120252f503b66c539fe1310fd856fd7ca

See more details on using hashes here.

Supported by

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