Skip to main content

Python JSON configuration reader and parser

Project description

Description

Utility that allows to read and parse json config files.

Possible to specify links to the default values in the config (See Usage section).

Installation

  1. Install python 3.6+

  2. Ensure pip, setuptools, and wheel are installed and up to date

python -m pip install --upgrade pip setuptools wheel

  1. Create virtual enviroment (make sure that is not part of the project)

python -m venv <ENV NAME>

or

python -m venv %path%\to\<ENV NAME>

  1. Active virtual enviroment

%path%\to\<ENV NAME>\Script\activate

  1. Install all project dependencies if needed

pip install -r requirements.txt

  1. Install pandoc and pypandoc. Instruction

pip install pypandoc

Usage

Example of the config file:

C:\User\test\qa_hotfix_config.json

{
    "defaults": {
        "dataBaseUrl": "http://db:5000"
    },
    "dataBase1": "<defaults.dataBaseUrl>",
    "dataBase2": "<defaults.dataBaseUrl>"
}
  1. Specify that lib in your project dependencies

  2. Import from jsonconfigparser.json_config_reader import JsonConfigReader

  3. Create an instance of the class passing config folder path and options

config_path = 'C:\User\test\qa_config.json'
json_config_reader = JsonConfigReader(config_path)
config = json_config_reader.get()
file_path = json_config_reader.get_config_file_path()
print(config['dataBase1'])
print(file_path)

>> http://db:5000
>> C:\User\test\qa_config.json

Uploading project to PyPi

  1. Change version in setup.py

  2. Upload changes to PyPi server

python setup.py sdist upload -r <Repository URL to the PyPi server>

Run unit tests (Example for Visual Studio)

  1. From Visual Studio

    1. Click Test -> Run -> All Test

    2. View Test run in Test Explorer

  2. From CLI

    1. Navigate into project directory

    2. python -m unittest

Generate docs and updating docs

  1. Run easy_install -U sphinx

  2. Navigate to docs folder

  3. Run sphinx-quickstart

  4. Follow instruction

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

jsonconfigreader-1.3.1.tar.gz (4.1 kB view details)

Uploaded Source

File details

Details for the file jsonconfigreader-1.3.1.tar.gz.

File metadata

File hashes

Hashes for jsonconfigreader-1.3.1.tar.gz
Algorithm Hash digest
SHA256 0e1825f26e6b5394123827fa6356007daff1dac035bc1f35c9031ce50507d726
MD5 2e9d93a1701af14ac0bcdbb035e8823a
BLAKE2b-256 554005f563b81cdab6b9b44f4e062c30b9848d6c5d9e45ded02025d8e4f9a033

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