feat: implement database handlerImplement a database api to manage nodes and relationships in a "graph databaselike" implemented in sqlite.closes #1

This commit is contained in:
Alexander Navarro 2024-11-13 19:55:02 +00:00
parent 5aaacb10e3
commit b2d8dadcee
17 changed files with 963 additions and 0 deletions

View file

@ -0,0 +1,6 @@
name,category,metadata
Django,web framework,"{""website"":""https://djangoproject.com"",""github"":""django/django"",""package_manager"":""pip"",""latest_version"":""4.2.0""}"
FastAPI,web framework,"{""website"":""https://fastapi.tiangolo.com"",""github"":""tiangolo/fastapi"",""package_manager"":""pip"",""async_support"":true}"
Requests,http client,"{""website"":""https://requests.readthedocs.io"",""github"":""psf/requests"",""package_manager"":""pip"",""type"":""library""}"
Beautiful Soup,web scraping,"{""website"":""https://www.crummy.com/software/BeautifulSoup"",""github"":""waylan/beautifulsoup"",""parser_support"":[""html"",""xml""]}"
Click,cli,"{""website"":""https://click.palletsprojects.com"",""github"":""pallets/click"",""type"":""framework"",""python_versions"":"">=3.7""}"
1 name category metadata
2 Django web framework {"website":"https://djangoproject.com","github":"django/django","package_manager":"pip","latest_version":"4.2.0"}
3 FastAPI web framework {"website":"https://fastapi.tiangolo.com","github":"tiangolo/fastapi","package_manager":"pip","async_support":true}
4 Requests http client {"website":"https://requests.readthedocs.io","github":"psf/requests","package_manager":"pip","type":"library"}
5 Beautiful Soup web scraping {"website":"https://www.crummy.com/software/BeautifulSoup","github":"waylan/beautifulsoup","parser_support":["html","xml"]}
6 Click cli {"website":"https://click.palletsprojects.com","github":"pallets/click","type":"framework","python_versions":">=3.7"}