Skip to main content

Two way configurations mapping helper for Python.

Project description

Build Status Coverage Codacy grade Python Version PyPI PyPI Status License

📄⇄🛠 Two way configurations mapping helper for Python.

Get Started

from biconfigs import Biconfigs
configs = Biconfigs('configs.json')

# Simply change the dict, and it will automatically save the changes to file.
configs['options'] = {'debug': True,
                      'username': 'Anthony',
                      'list': [] }

# Access with simple 'x.y.z' style
configs.options.list.append('example')

Content of file configs.json after execution:

{
  "options": {
    "debug": true,
    "list": [
      "example"
    ],
    "username": "Anthony"
  }
}

Install

pip install biconfigs

Dependencies

No dependencies required 🎉

Tested on Python 2.6, 2.7, 3.3, 3.4, 3.5, pypy, pypy3

Documentation

When to save

  • Saving when: Item create, item delete, list reorder, value change, ``get_set``, etc.

    # All the following single statement will cause saving
    configs['item'] = 'value'
    configs['options'] = {}
    configs.options['list'] = []
    configs.options.list.append('example')
    configs.options['list'] = []
    configs.options.clear()
    value2 = configs.get_set('item2', 45)
  • Not saving when: Item access, assignment but not changed, etc.

    # All the following single statement will NOT cause saving
    value = configs.item
    configs['item'] = 'value' # The value of 'item' is not changed
    value3 = configs.get('item_not_exists', 'default_value')

Non-blocking saving

By default, Biconfigs use asynchronous saving. You can disable the feature by setting async_write to False

# set "async_write=False" if your want to use synchronous saving
# to ensure your data saved to file in time,
# WARNING: In sync mode, your changes will block the incoming statement
# until the file correctly saved.
configs = Biconfigs('configs.json', async_write=False)

configs['item'] = 'value' # Blocking
# Configure file saved already

# Your code...

High frequency update

Normally, Biconfigs will write the changes to file immediately. But sometime you may want to update values frequently, which will result in a IO bottleneck. So you can use ``with`` statement to prevent auto saving for a while.

with configs:
  for i in range(1000):
    configs['some_key'] = i
# This statement will execute saving process only one time when exiting "with" scope

Reload from file

Simply use reload function to reload from file. Note: reload will discard all present data in Biconfigs-object and loads new ones from file)

configs.reload()

Parsers

Biconfigs use Prettified Json as default parser. You may want to set parser='json' to save as compacted json file.

configs = Biconfigs('configs.json', parser='json')
configs['item'] = 'value'
configs['debug'] = False

configs.json:

{"debug": false, "item": "value"}

Available Parsers

  • json: Compact JSON format

  • pretty-json: Prettified JSON

  • To be developed…

License

MIT

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

biconfigs-0.1.1.zip (12.8 kB view details)

Uploaded Source

Built Distribution

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

biconfigs-0.1.1-py2.py3-none-any.whl (5.8 kB view details)

Uploaded Python 2Python 3

File details

Details for the file biconfigs-0.1.1.zip.

File metadata

  • Download URL: biconfigs-0.1.1.zip
  • Upload date:
  • Size: 12.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for biconfigs-0.1.1.zip
Algorithm Hash digest
SHA256 154be9adff30c2b45377f2916fdd0141c1a82b0847ecdc52fe2ea530c07acaba
MD5 9e0c2fd336e484fd945ffa6713ba74a5
BLAKE2b-256 a65ad289acef71e1a705c3008ab23323c95394367063b7c2db482d49c1c21e4a

See more details on using hashes here.

File details

Details for the file biconfigs-0.1.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for biconfigs-0.1.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 51468d4fd478cb9c255213eb373c4391943b47fa70987361e968167f306a7698
MD5 86c65c0f2ffdafff1ad69bb4409b7d5b
BLAKE2b-256 f0120838f389c9084882e0004f0833f6dcddbf242dfba0d506072382b466fcf4

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