Skip to main content

A useful library for simplifying work with .json files.

Project description

Betterjson

Library for easier working with JSON files in Python.

Quick example

{"names": ["Alex", "Allan"]}
import betterjsondb

db = betterjsondb.connect(file="tests.json", prefix="~")                  # Name of file and prefix can be custom

print(                                                                    # In concole you'll see:
    db.get("all"),                                                        # {'names': ['Alex', 'Allan']}
    db.push("cars", {"BMW": "car", "Tosiba": "not_car"}, callback=True),  # True
    db.update("cars", "=", {"BMW": "car"}, callback=True),                # True
    db.delete("names", callback=True),                                    # True
    db.get("all")                                                         # {'cars': {'BMW': 'car'}}
)

Important information

27.12.2021 library updated using Python 3.10. So now its strictly requere it on your PC.

Changelog:

v. 0.1.8:

After connect file if its not exists library will create it. Added warning to not existing file.

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

betterjsondb-0.1.9.tar.gz (3.5 kB view details)

Uploaded Source

File details

Details for the file betterjsondb-0.1.9.tar.gz.

File metadata

  • Download URL: betterjsondb-0.1.9.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for betterjsondb-0.1.9.tar.gz
Algorithm Hash digest
SHA256 2adc6ff02d12430a72634f6491c840c2624e8046daff84daa48837d8eeb493f2
MD5 57cf332d5e9d6ac37fe3cc4724679a09
BLAKE2b-256 e4e400adf5f32c56d7b5877b270c4e8f6574246bb0c42e177cc68896359cb628

See more details on using hashes here.

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