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.8.tar.gz (3.9 kB view details)

Uploaded Source

File details

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

File metadata

  • Download URL: betterjsondb-0.1.8.tar.gz
  • Upload date:
  • Size: 3.9 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.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for betterjsondb-0.1.8.tar.gz
Algorithm Hash digest
SHA256 00e8ac5bcee4aca1d4920d333b8db7c16c67484ea157b16ff13ee5871debb981
MD5 ec5ceaca311a5f51e7dc26725c0c8e61
BLAKE2b-256 8daee7a4f14f4527d74f0ce05f9dc58154f42c049eb99a4f909661a504e00274

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