A simple database wrapper for Python 3
Project description
ezdatabase
Making Databases easier
EzDatabase is a simple Database Wrapper for Python! Inspired by Repl.it Database!
Features
- Works with a Key / Value System
- Can store strings, numbers, objects, booleans
Code Examples
- Initialize Database
from ezdatabase import db
database = db("MyDatabase.db")
# Returns None
- Set / Update Value of a Key
# Arguments: key_name, key_value
database["User1"] = {"age": 10, "name": "John"})
database["Product: 21398"] = "10,30 EUR"
# Returns True on Success
- Read the Value of a Key
value = database["User1"]
# Returns the Value of a Key
- Delete a Key
del database["User1"]
# Returns True on Successful removal of the Key
Change Log
1.5 (02/12/2021)
- Usage Updated
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ezdatabase-1.5.tar.gz
(3.2 kB
view details)
File details
Details for the file ezdatabase-1.5.tar.gz
.
File metadata
- Download URL: ezdatabase-1.5.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.0.1 pkginfo/1.7.1 requests/2.18.4 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5838201325213e0438cf1b3d404a6f0d4642847dfe873d620d132c0226b94dc6 |
|
MD5 | edf5754355af9a8b7ad66b61ac54087e |
|
BLAKE2b-256 | d4df24a2ce93c85c29675646828ec990c916408f25abf48b9931a3a3c5fb7666 |