Skip to main content

Python wrapper for BadgerDB

Project description

BadgerDB Python Wrapper

This is a Python wrapper for BadgerDB, a fast and efficient key-value store written in Go. This wrapper allows Python applications to interact with BadgerDB via a shared library (libbadger.so), providing a straightforward interface for managing key-value pairs.

Features

  • Insert key-value pairs: Store key-value pairs in the BadgerDB database.
  • Retrieve values by key: Get values stored in the database using their corresponding keys.
  • Delete key-value pairs: Remove key-value pairs from the database.
  • Iterate over all keys: Retrieve a list of all keys currently stored in the database.
  • Export to JSON: Dump all key-value pairs in the database into a JSON file.
  • Import from JSON: Load key-value pairs from a JSON file into the database.

Installation

Using pip

You can install this package directly from PyPI using pip:

pip install badgerdb-python

This will install the Python wrapper along with the necessary dependencies, including the required libbadger.so shared library that contains the Go-based functions needed to interact with the BadgerDB.

Requirements

  • Python 3.x

Usage

Basic Operations

You can use the BadgerDB wrapper to perform basic database operations like inserting, retrieving, and deleting key-value pairs.

Example: Insert, Retrieve, and Delete Key-Value Pairs

from badgerdb import BadgerDB

# Initialize the database (replace with your DB path)
db = BadgerDB("/path/to/db")

# Insert a key-value pair
db.put("Hey", "I am Badger!")

# Retrieve the value for the key 'Hey'
print(db.get("Hey"))  # Output: I am Badger!

# Delete the key-value pair for 'Hey'
db.delete("Hey")

# Close the database when done
db.close()

Iterating Over Keys

You can retrieve a list of all the keys in the database.

from badgerdb import BadgerDB

# Initialize the database
db = BadgerDB("/path/to/db")

# Insert some key-value pairs
db.put("name", "Alice")
db.put("age", "30")
db.put("city", "New York")

# Iterate over all keys
keys = db.iterate()
print(keys)  # Output: ['name', 'age', 'city']

# Close the database when done
db.close()

Exporting and Importing Data as JSON

You can export the entire database to a JSON file and later import it back into the database.

Export to JSON

from badgerdb import BadgerDB

# Initialize the database
db = BadgerDB("/path/to/db")

# Insert some data
db.put("key1", "value1")
db.put("key2", "value2")

# Export the data to a JSON file
db.dump_to_json("/path/to/output.json")

# Close the database
db.close()

Import from JSON

from badgerdb import BadgerDB

# Initialize the database
db = BadgerDB("/path/to/db")

# Import data from a JSON file
db.load_from_json("/path/to/output.json")

# Verify that the data is imported
print(db.get("key1"))  # Output: value1
print(db.get("key2"))  # Output: value2

# Close the database
db.close()

Features

  • Error Handling: The wrapper will raise exceptions if there are any issues interacting with the database (e.g., attempting to access a non-existent key or failing to load data from a file).
  • Data Integrity: Supports basic CRUD (Create, Read, Update, Delete) operations ensuring consistency during data manipulations.

Contributing

We welcome contributions from the community! If you'd like to contribute, follow these steps:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-name).
  3. Make your changes.
  4. Commit your changes (git commit -am 'Add new feature').
  5. Push to the branch (git push origin feature-name).
  6. Create a pull request.

For larger changes or bug fixes, feel free to open an issue to discuss the proposed changes before implementing them.

Acknowledgements

This Python wrapper relies on the libbadger.so shared library for interacting with the BadgerDB database. Special thanks to the developers who created the gobadger library and its C-compatible shared library (libbadger.so) that enables this Python integration.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

badgerdb-1.0.0.tar.gz (7.4 MB view details)

Uploaded Source

File details

Details for the file badgerdb-1.0.0.tar.gz.

File metadata

  • Download URL: badgerdb-1.0.0.tar.gz
  • Upload date:
  • Size: 7.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for badgerdb-1.0.0.tar.gz
Algorithm Hash digest
SHA256 199c85b251e65061fb805657b4f1e20f57942b903f99cfd2e92060cb5a30785a
MD5 d4c8afb7d59574aabbbc990d63b52053
BLAKE2b-256 fb062bb74b080490d46c71b0ef8bdc20ddd7d2ea22b55539d247d6be570acc73

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page