a better replit database for python
Project description
repltable
install](#⚙️-installation)
this is a project is to make it so that you can have tables in the replit db.
the main annoyance (for me) with replit is that it reverts a lot of database file changes, which forces you to use the repl.it database. also, you can't group together keys, and it takes FOREVER to install, due to it installing flask, aiohttp and a ton of other things you don't need for the database.
⚙️ installation
pip install repltable
🪴 usage
# if you are using this on replit
from repltable import db
# or...
from repltable import Database
db = Database("https://kv.replit.com/v0/...")
# repltable databases work like a dictionary
db.get(foo='bar')
>>> [{'foo': 'bar'}]
# repltable auto-creates tables if they don't exist
db.insert(dict(foo='bar'))
# you can get one, or get all matching documents
db.get_one(foo='bar')
>>> {'foo': 'bar'}
# you can also group keys together
from repltable import TableDatabase
table = TableDatabase.get("users")
# from here, it behaves as a regular database
table.get(foo='bar')
>>> [{'foo': 'bar'}]
# repltable auto-creates tables if they don't exist
table.insert(dict(foo='bar'))
# you can get one, or get all matching documents
table.get_one(foo='bar')
>>> {'foo': 'bar'}
❓ why not just use replit-py?
well, my goal is to make it so that you can use repl.it databases without having to use replit-py. replit-py has 27 dependencies. repltable has 2.
plus, repltable has more features:
- caching (auto-updates itself for accuracy!)
- groups of keys (named tables)
- uses more efficient queries (you can filter keys!)
👥 contributing
to contribute, fork the repo, make a branch, and send a pull request.
for local development, you can install the dependencies with poetry:
poetry install
📜 license
this project is licensed under the mit license.
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
File details
Details for the file repltable-3.0.0.tar.gz
.
File metadata
- Download URL: repltable-3.0.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.8.10 Linux/5.10.16.3-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2acb2b4589789d778971645ab6e78d1c469040bba38453a44316b82683df281 |
|
MD5 | 0858dd59c03cc9383dc25aa9b93a53af |
|
BLAKE2b-256 | bd443da25757e15b0a4e6fec17a1abd1344fa2f5107eaa49400a10c0fdf4c98c |
File details
Details for the file repltable-3.0.0-py3-none-any.whl
.
File metadata
- Download URL: repltable-3.0.0-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.8.10 Linux/5.10.16.3-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26fcf5302d8c79a200b017c65629fa895ef9418cdc41d1f245905716c6d2cbe3 |
|
MD5 | c6163bcfde6af531b6905851664e1396 |
|
BLAKE2b-256 | c9887ebbd893482dfdece315e48ed7b28db0cfd91b475846b131538e175f09ec |