Module for working with JSON file data
Project description
Изменения:
- 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.60.tar.gz
(4.0 kB
view details)
Built Distribution
File details
Details for the file barladb-0.2.60.tar.gz
.
File metadata
- Download URL: barladb-0.2.60.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 | 1c363b3e4e4254555e33dc4a98491b85c5b0148ffa4cd686d963fe71ec9fe452 |
|
MD5 | 058186fe5a290a0389620f2ce0d3a6a7 |
|
BLAKE2b-256 | 86686403511898328bcc63ec376e6838523ab5e52f50efbe465a1c3640871e48 |
File details
Details for the file barladb-0.2.60-py3-none-any.whl
.
File metadata
- Download URL: barladb-0.2.60-py3-none-any.whl
- Upload date:
- Size: 4.9 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 | f99177faef6fe3ae13fd919b1eda4274c5f292624e2c4998fcce8a9931faad2b |
|
MD5 | 93c0c558035869d06f6f6811f3c7f764 |
|
BLAKE2b-256 | d8eda1d82516f2a215850367bb8c5c2fa607f869d152e608c40e2752927dbebc |