Skip to main content

A lightweight, encrypted JSON-based database with support for collections, document operations, and aggregation.

Project description

    # Encrypted JSON Database

    ## Overview
    This package provides a lightweight, encrypted JSON-based database with support for collections, document operations, and aggregation. It uses the `cryptography` library for encryption and decryption of data, ensuring secure storage of your sensitive information.

    ## Features
    - **Encryption and Decryption**: Uses Fernet symmetric encryption to protect your data.
    - **Collections**: Supports creating, reading, updating, and deleting collections.
    - **Documents**: Allows adding, finding, updating, and deleting documents within collections.
    - **Aggregation**: Provides basic aggregation functionality for querying documents.
    - **Linking Collections**: Supports linking between collections to create references.
    - **Tree Structure**: Allows creating tree structures by linking root documents to their child documents.

    ## Usage
    ```python
    import pyjondb

    # Initialize the database
    db = pyjondb.database('mydatabase', 'mysecretkey')

    # Create the database
    db.create()

    # Create a new collection
    db.create_collection('mycollection')

    # Add a document to the collection
    document = {'name': 'John Doe', 'age': 30}
    db.add_document('mycollection', document)

    # Find a document in the collection
    query = {'name': 'John Doe'}
    results = db.find_document('mycollection', query)
    print(results)

    # Update a document in the collection
    document_id = results[0]['_id']
    db.update_document('mycollection', document_id, {'age': 31})

    # Delete a document from the collection
    db.delete_document('mycollection', document_id)

    ### Learn more about it at the docs: https://github.com/t-a-g-o/PyJONDB/wiki

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

pyjondb-1.0.tar.gz (6.0 kB view hashes)

Uploaded Source

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