{"id":23010051,"url":"https://github.com/dmdhrumilmistry/pyserverlessdb","last_synced_at":"2026-05-03T06:34:00.011Z","repository":{"id":45249035,"uuid":"441655479","full_name":"dmdhrumilmistry/pyserverlessdb","owner":"dmdhrumilmistry","description":"A serverless DB for python hobby project. This project is still in BETA. Contributions and ideas are welcome.","archived":false,"fork":false,"pushed_at":"2021-12-28T14:50:07.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-02T16:15:02.378Z","etag":null,"topics":["db","dmdhrumilmistry","python3","serverless","serverlessdb"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dmdhrumilmistry.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-12-25T10:27:25.000Z","updated_at":"2021-12-28T14:50:10.000Z","dependencies_parsed_at":"2022-09-14T17:12:26.055Z","dependency_job_id":null,"html_url":"https://github.com/dmdhrumilmistry/pyserverlessdb","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dmdhrumilmistry/pyserverlessdb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmdhrumilmistry%2Fpyserverlessdb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmdhrumilmistry%2Fpyserverlessdb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmdhrumilmistry%2Fpyserverlessdb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmdhrumilmistry%2Fpyserverlessdb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dmdhrumilmistry","download_url":"https://codeload.github.com/dmdhrumilmistry/pyserverlessdb/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmdhrumilmistry%2Fpyserverlessdb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32560555,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T03:21:47.309Z","status":"ssl_error","status_checked_at":"2026-05-03T03:21:43.884Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["db","dmdhrumilmistry","python3","serverless","serverlessdb"],"created_at":"2024-12-15T09:16:48.986Z","updated_at":"2026-05-03T06:33:59.992Z","avatar_url":"https://github.com/dmdhrumilmistry.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PyServerlessDB\n```\n+==============================================+\n| ╔═╗┬ ┬╔═╗┌─┐┬─┐┬  ┬┌─┐┬─┐┬  ┌─┐┌─┐┌─┐╔╦╗╔╗   |\n| ╠═╝└┬┘╚═╗├┤ ├┬┘└┐┌┘├┤ ├┬┘│  ├┤ └─┐└─┐ ║║╠╩╗  |\n| ╩   ┴ ╚═╝└─┘┴└─ └┘ └─┘┴└─┴─┘└─┘└─┘└─┘═╩╝╚═╝  |\n+----------------------------------------------+\n| A Serverless DB for hobby python projects    |\n+----------------------------------------------+\n~  v0.0.1Beta          Author: Dhrumil Mistry  ~\n+==============================================+\n```\nA Serverless DB for hobby python projects\n\n# Installation\n\n## Using pip+git (Faster)\n- Install using\n    ```bash\n    pip3 install git+https://github.com/dmdhrumilmistry/pyserverlessdb.git\n    ```\n\n## Using clone+pip (Safer)\n- clone/download repo\n    ```bash\n    git clone https://github.com/dmdhrumilmistry/pyserverlessdb.git\n    ```\n- change directory\n    ```bash\n    cd pyserverlessdb\n    ```\n- run tests\n    ```bash\n    python3 setup.py test\n    ```\n- if test is ok, then install\n    ```bash\n    pip3 install -e .\n    ```\n\n# Usage\n\n## Using interpreter/console\n- Start console using\n    ```\n    python3 -m pyserverlessdb\n    ```\n- Use `help` command for instructions\n    ```\n    \u003e help\n    ```\n    \n    \n    | Command | description |\n    |:-------:|:------------|\n    |help|prints help menu|\n    |exit|close interpreter\n    |dbs|print all the created/connected dbs|\n    |createdb|creates/connects with the db|\n    |seldb|selects a db|\n    |showdb|show selected db|\n    |printdb|prints db content|\n    |tbls|show tables in selected db|\n    |createtbl|create a table in selected db|\n    |deltbl|delete a table from selected db|\n    |seltbl|select a table from selected db|\n    |showtbl|print selected table name from selected db|\n    |printtbl|print selected table data from selected db|\n    |addobj|add object to selected table in selected db|\n    |updateobj|update object from selected table in selected db|\n\n\n    |abbreviation|full form|\n    |:----------:|:--------|\n    |DB|Database|\n    |tbl|Table|\n    |sel|Select|\n    |del|Delete|\n\n\n# Important Notes:\n- Windows User need to use `pip` instead of `pip3` and `python` or `py` instead of `python3`\n- PyServerlessDB is still under development and is currently in Beta version.\n\n\n# Instructions for Contribution:\n- Create a issue with your idea. I will assign it to you.\n- Create Fork\n- Edit source code \u0026 create tests\n- make Pull Request\n- I everything is fine, then it will be merged to main\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmdhrumilmistry%2Fpyserverlessdb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdmdhrumilmistry%2Fpyserverlessdb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmdhrumilmistry%2Fpyserverlessdb/lists"}