PyliteDB is a lightweight, fast and simple database management system
Project description
🚀 PyLite
PyLite is a lightweight database built in Python 🐍, designed to be super easy to use, beginner-friendly 🎓, and production-ready! With PyLite, you can seamlessly perform essential database operations like Insert, Select, Update, and Delete using intuitive, Pythonic syntax. Perfect for both learning 📚 and real-world projects 🏗️!
💡 Why Choose PyLite?
- ❌ 0 Extra Code
- ❌ 0 Complex Configurations
- 🔄 Built-in Converter from SQL databases (using
sqlite3) - ⚙️ 1 Config File to get started in no time
- 🧠 Tightly Integrated with Python
- 🌐 Built-in DataBrowser (Web-based) — use it Standalone or Host it!
🚀 Getting Started
⚙️ Instalation
pip install PyliteDB
📚 Usage Without Config File
- Converting SQL to PYLITE Database
from Pylite import Database
db = Database()
db.LoadFromSQL("SLQ_FILE_PATH")
db.Save("SAVE_LOCATION","YOUR_PASSWORD")
- Loading Database
from Pylite import Database
db = Database("SAVE_LOCATION","YOUR_PASSWORD",AutoSave=True)
📚 Usage With Config File
Config Files are just python scripts to iniialize the database and create Tables shortcuts and more ...
Create a Config file Database.py
from Pylite import Database
password = "YOUR_PASSWORD"
path = "PYLITE_FILE_PATH"
Database = Database(Path=path,Password=password,AutoSave=True)
# Table Shortcuts (Optional)
Accounts = Database.Accounts #Examples
Now Go to the script you Want to use pylite in for example app.py
from Database import Accounts #Import Tables Directly
#Example Functions
def Login(Email,Password):
return Accounts.Exists(
Email = Email ,
Password = Password
)
def SignUp(Email,Password):
return Accounts.Insert(
Email = Email ,
Password = Password
)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pylitedb-0.2.2.1.tar.gz.
File metadata
- Download URL: pylitedb-0.2.2.1.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9eb23182705de0abde969b7e6fddf16ebf98a9afee314924fab8a04925e9c2b
|
|
| MD5 |
677275d35ee8a073b595f0fa3a87d2e7
|
|
| BLAKE2b-256 |
de8b1b294ff2823e9870ee6520d0b5eff81d17aa9aef1169262b7f7bc970c661
|
File details
Details for the file PyliteDB-0.2.2.1-py3-none-any.whl.
File metadata
- Download URL: PyliteDB-0.2.2.1-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c4dbac701ae18125007266c218b68d2c679b702d8132e8a903d975066062bed
|
|
| MD5 |
1aa751be4aa2b80b26a8f567babd20cb
|
|
| BLAKE2b-256 |
db2f91387120c99a49d9a7163df1fb0fb1293a480e371da88ff72a817f2aaab1
|