Module for working with JSON file data
Project description
Changes:
- English interface
- Minor changes to the interface and commands
ToDo:
- None
What is BarlaDB?
BarlaDB
is a library that is created for working with local databases in.json
format. Has well-developed functions and logging! And most importantly, it has a very easy-to-learn interface, even for a beginner!
Quickstart
from barladb import db #Imports DB functions
from barladb import config #imports config
import socket
config.debug = True #Debug ON
config.log = True #Log ON
barladb = db.BarlaDB() #Creating an instance of a class
data = barladb.get("example.json") #We get the contents of the database and save it into the "data" variable
#Also, if your file is in a different directory:
#db.get("path/to/file/example")
print("Hello, User! Your computer name already in example.json.")
data["name"] = socket.gethostname()
barladb.save("example.json", data) #Saving the "data" variable to example.json
"""
My example.json looks like this:
{
"name": "barlin41k"
}
In column "name", should be your hostname, but since mine is barlin41k, it comes out like this.
Let me remind you that this is just a short example of using the module.
"""
How to install?
pip install barladb
Peculiarities BarlaDB:
- Has an easy and intuitive interface.
- Has no dependencies
- Everything is built in the popular
.json
data format.
Links:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
barladb-0.2.70.tar.gz
(4.0 kB
view details)
Built Distribution
File details
Details for the file barladb-0.2.70.tar.gz
.
File metadata
- Download URL: barladb-0.2.70.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6445d7e025e09efd3d181feb588087dabe32cbc46cdd05af674d4ed3a6cf3250 |
|
MD5 | 562cc0bfdd3db35cb298f8cb8b569a5a |
|
BLAKE2b-256 | 9dd233d52df97e7808a389bc9caa1795164e0e84d3c09fef5e18ea161080d987 |
File details
Details for the file barladb-0.2.70-py3-none-any.whl
.
File metadata
- Download URL: barladb-0.2.70-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea99b4b7e5feaca60df11d3b28d6e70e529c3e39cc8569c320f22f1c2d3e3241 |
|
MD5 | 09aa850bc15e83c3add1f54d8fb0acef |
|
BLAKE2b-256 | 29b1c5b077e4c3e32ebfa450acba4cfee2499b7202e5d741a905337ba1171269 |