https://github.com/geekdude/datastore
https://github.com/geekdude/datastore
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/geekdude/datastore
- Owner: Geekdude
- Created: 2024-09-30T16:18:39.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-01-22T20:07:04.000Z (5 months ago)
- Last Synced: 2025-01-22T21:20:25.579Z (5 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
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
```txt
"datastore-ayoung48 @ git+ssh://[email protected]/Geekdude/Datastore.git",
```## Development
Usepip3 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/