Skip to main content

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


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 hashes)

Uploaded Source

Built Distribution

barladb-0.2.70-py3-none-any.whl (4.8 kB view hashes)

Uploaded Python 3

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