๐ TODO List โ SimpleORM¶
A minimalist Python ORM designed for data science and engineering tasks.
CODE¶
- [x] Defined base connection interface
- [x] Initial project structure set up
- [x] Implement unified engine connection object (supports SQLite, PostgreSQL, MySQL)
-
[x] Create show_tables() method to show availabe tables in the coonected db -> :List
-
[ ] Add
create,get,update,deletemethods to base ORM class - [ ] Design
engines.pywith engine-specific classes
๐งช Testing¶
-
[x] Write unit tests for connection logic
-
[ ] Add CRUD operation tests with SQLite
- [ ] Mock engine tests for PostgreSQL & MySQL
๐ Docs & Examples¶
- [ ] Write usage guide for README
- [ ] Add code examples for each major feature