- Notifications
You must be signed in to change notification settings - Fork0
A simple 👍 and efficient 💪 DataBase 📚 designed to store and use large amounts of data.
License
Adwaith-Rajesh/onstro-db
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Asimple,fast andstrict DB designed to store and handle large amounts of data.
pip install onstro-db
A simple code snippet on how to use OnstroDB
fromonstrodbimportOnstroDb# define the schema for the DBdb_schema= {"name": {"type":"str","required":True},"age": {"type":"int","required":True},"place": {"type":"str","default":"canada"}}# initialize the dbdb=OnstroDb(db_name="test-db",schema=db_schema)db.add([ {"name":"adwaith","age":16}, {"name":"fred","age":17,"place":"texas"}])db.commit()
We all know thatPandas is fast, but it's also really hard to learn for beginners. That's where OnstroDb comes into action. This DB allows you to perform CRUD operations on data, with the speed promised by Pandas. Without you having to know a single thing about pandas. The DB is also strict.,i.e once the schema and the types of the data are defined it cannot be modified. And it also comes with a CLI.
Clickhere to see the docs.
Coz it's supposed to handle monstrous amount of data.
Read theCONTRIBUTING.md for the code design style and linting preferences.
Once you've gone though follow theses steps.
- Fork this repo.
- Create a new branch from master. (Very important)
- Make your required changes with good commit messages.
- Write the test to make sure that your changes work.
- Create a pull request.
- Bug the maintainers until it get merged 😊.
Create an issue or join our Discord serverHere.
About
A simple 👍 and efficient 💪 DataBase 📚 designed to store and use large amounts of data.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.