Skip to main content

bear's toolkit

Project description

bearlib

A simple collection of helper routines that I use in a lot of projects.

Wheel Status

I used to just copy the directory into each project…

yes, a build/release person was breaking all the rules - sigh

Config

A dictionary based config class:

c = Config({ 'a': 1, 'b': 2, 'c': {'d': 1}}
print("c.a =", c.a)
print("c.c.d" =", c.c.d)

generates:

c.a = 1
c.c.d = 1

It also has three helper methods:

fromDict(dictionary)
fromJson(filename)
fromEtcd(host='127.0.0.1', port=4001, base='/')

fromDict() walks thru the keys of the given dictionary recursively and adds them to the object. Any key found that has a list or dictionary value is handled with instances of Config created as needed.

fromJson() uses json.load() to process the given filename and then calls fromDict() to store the values.

fromEtcd() walks the directory tree at the base location in the etcd server, builds a dictionary and then passes that to fromDict() for storage.

Install

from PyPI:

pip install bearlib

from git:

cd /base/of/your/virtualenv
pip install -e git+https://github.com/bear/bearlib.git#egg=bearlib

to update the from-git install:

cd /base/of/your/virtualenv pip install –upgrade -e git+https://github.com/bear/bearlib.git#egg=bearlib

Tests

From the source directory:

make test

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

bearlib-0.8.0.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

bearlib-0.8.0-py2-none-any.whl (8.9 kB view details)

Uploaded Python 2

File details

Details for the file bearlib-0.8.0.tar.gz.

File metadata

  • Download URL: bearlib-0.8.0.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for bearlib-0.8.0.tar.gz
Algorithm Hash digest
SHA256 6feb1269272bfd0a47fd40e22c0660c9683390ecb9a8e8a1590d55f7ebd5ad12
MD5 c69a1e74823c3c61002296df456e4a5c
BLAKE2b-256 2382ffaa731d150048c2e21b33e08d3d29e819d5a36e394b0e1f053f50742292

See more details on using hashes here.

File details

Details for the file bearlib-0.8.0-py2-none-any.whl.

File metadata

File hashes

Hashes for bearlib-0.8.0-py2-none-any.whl
Algorithm Hash digest
SHA256 2ed8532f7de010f72d542d4269b1b4ccba001abc3463e39bc864d4171393f67d
MD5 8fbd4199f52e9e718ab0d6a5930fede3
BLAKE2b-256 d2f20ec56ab0546708934cc90c0f2c7d09a42d21133d386b4458e977ce2d8b71

See more details on using hashes here.

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