Skip to main content

An Easier Way to work with json files

Project description

Config-Json

An Easier Way to work with JSON configs

this library provide some top level method to make it easy to work with json Link: https://pypi.org/project/config-json/

  1. How to Use?
from jconf.config import Config

# u can either do
c = Config(config_name="main.json") # default name is main.json
# or
with Config(config_name="main.json")  as c:
    pass
  1. functions available
from jconf.config import Config

c = Config(config_name="main.json")
# returns all the keys from a json file
c.keys()
# returns all the values from a json file
c.values()
# gets the key from a json file
c.get('car')
# deletes a key from a json file
c.delete('car')
# update a value in a json file
c.update('car', 'tesla')
# sets a new key in json file
c.set('car2', 'ferari')
  1. instead of using functions you can also use:
from jconf.config import Config

c = Config('main.json')
# to/set or change a value
c['car'] = "name"
c['number_plate'] = ['3131', '3134', '3132']
# delete a key
del c['car']
# loop over a json file
for i in c:
    print(i) # returns a list of tuple with (key, value)
# updates / add to an existing key
c['car'] += {'model', 'year'}
# get a value
car = c['car']
  • Automatically creates the passed config_name if it doesn't exists

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

config-json-0.0.3.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

config_json-0.0.3-py3-none-any.whl (2.6 kB view hashes)

Uploaded Python 3

Supported by

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