Skip to content

Geekdude/Datastore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Container object for datasets

Dictionary-like object that exposes its keys as attributes.

>>> b = Bunch(a=1, b=2)
>>> b['b']
2
>>> b.b
2
>>> b.a = 3
>>> b['a']
3
>>> b.c = 6
>>> b['c']
6

Use as a dependency

"datastore-ayoung48 @ git+ssh://git@github.com/Geekdude/Datastore.git",

Development

Use

pip3 install --user -e .

or

python3 setup.py develop --user

to install the package in an "editable" mode for testing and development.

Installation

Install the monitoring gui by first packaging the program as a python wheel and then instal the wheel using pip.

python3 setup.py bdist_wheel
pip3 install --user dist/<wheel_file>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages