Skip to content

๐Ÿ“ 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, delete methods to base ORM class

  • [ ] Design engines.py with 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