{"id":21167164,"url":"https://github.com/ambujraj/ambsql","last_synced_at":"2025-07-09T17:33:19.755Z","repository":{"id":33789475,"uuid":"159988863","full_name":"ambujraj/AmbSQL","owner":"ambujraj","description":"AmbSQL is a DBMS that is most EASY to operate on. ","archived":false,"fork":false,"pushed_at":"2021-07-15T04:42:55.000Z","size":263,"stargazers_count":24,"open_issues_count":28,"forks_count":35,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-09-22T08:06:13.839Z","etag":null,"topics":["database","database-management","python","sqlite3"],"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/ambujraj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"Code_Of_Conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-12-01T21:29:08.000Z","updated_at":"2021-07-15T04:42:57.000Z","dependencies_parsed_at":"2022-07-31T11:08:04.269Z","dependency_job_id":null,"html_url":"https://github.com/ambujraj/AmbSQL","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ambujraj%2FAmbSQL","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ambujraj%2FAmbSQL/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ambujraj%2FAmbSQL/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ambujraj%2FAmbSQL/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ambujraj","download_url":"https://codeload.github.com/ambujraj/AmbSQL/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225578936,"owners_count":17491281,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["database","database-management","python","sqlite3"],"created_at":"2024-11-20T14:59:58.471Z","updated_at":"2024-11-20T14:59:59.167Z","avatar_url":"https://github.com/ambujraj.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"![ambsql](images/Screenshot.PNG)\n\u003cbr\u003e\n# AmbSQL\n* AmbSQL is a Relational Database Management System which created with keeping in focus the speed and the ease to operate on.\n* Made With \u0026#x2764; in Python3\n\nTake a look at our [website](https://ambujraj.github.io/AmbSQL/homepage/)\n\n# Documentation\n\u003e Please refer to the documentation at https://github.com/ambujraj/AmbSQL/wiki/Documentation\n\n# Compatibility\n\u003e This program is compatible with python - 3.x\n\n# Installation\n## For Command-line Interface\n* Download the AmbSQL.exe file from https://github.com/ambujraj/AmbSQL/releases and run it on Your PC.\u003cbr\u003e\n* AmbSQL can also be downloaded from https://ambujraj.github.io/AmbSQL/download/.\n\n## For Python Package\nYou can use one of the below methods to download and use this repository.\u003cbr\u003e\u003cbr\u003e\nUsing pip:\u003cbr\u003e\n`$ pip install ambsql`\u003cbr\u003e\u003cbr\u003e\nManually using CLI:\u003cbr\u003e\n`$ git clone https://github.com/ambujraj/AmbSQL.git`\u003cbr\u003e\n`$ cd AmbSQL`\u003cbr\u003e\n`$ sudo python3 setup.py install (Linux and MacOS)`\u003cbr\u003e\n`$ python setup.py install (Windows)`\u003cbr\u003e\u003cbr\u003e\nManually using UI:\u003cbr\u003e\nGo to the [repo on github](https://github.com/ambujraj/AmbSQL) =\u003e Click on 'Clone or Download' =\u003e Click on 'Download ZIP' and save it on your local disk.\n\n# Usage\nIf installed CLI, open the AmbSQL.exe file and get the work started.\u003cbr\u003e\u003cbr\u003e\nIf installed using pip or CLI:\u003cbr\u003e\n`$ python` (Windows)\n\u003cbr\u003eor\u003cbr\u003e\n`$ python3` (Linux or MacOS)\u003cbr\u003e\n`\u003e\u003e\u003efrom ambsql import *`\u003cbr\u003e\u003cbr\u003e\nIf installed using UI, unzip the file downloaded, go to the 'AmbSQL' directory and use one of the below commands:\u003cbr\u003e\n`$ python3 AmbSQL.py` (Linux or MacOS)\n\u003cbr\u003eor\u003cbr\u003e\n`$ python AmbSQL.py` (Windows)\n\n# Examples\nIf you installed \u003cb\u003epackage\u003c/b\u003e using pip or CLI, below is the sample code:\u003cbr\u003e\n`from ambsql import *`\u003cbr\u003e\n`createtable('studenttable', 'name', 'age')`\u003cbr\u003e\n`insertvalues('studenttable', 'Jack', 21)`\u003cbr\u003e\n`showvalues('studenttable')`\u003cbr\u003e\u003cbr\u003e\nIf you installed \u003cb\u003eAmbSQL.exe\u003c/b\u003e, below is the sample code:\u003cbr\u003e\n`\u003e connect`\u003cbr\u003e\n`\u003e createtable(studenttable, name, age)`\u003cbr\u003e\n`\u003e insertvalues(studenttable, Jack, age)`\u003cbr\u003e\n`\u003e showvalues(studenttable)`\n\n # Contributors\n\u003e Check the list of contributors [here](https://github.com/ambujraj/AmbSQL/blob/master/CREDITS)\n\n# Help Us Improve\n\u003e You can suggest us of new improvements you want by creating new Issue [here](https://github.com/ambujraj/AmbSQL/issues)\n\n## Important Notice\n\n**AmbSQL** has been selected at [GirlScript Summer of Code 2021](https://www.gssoc.tech/)!!! \n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://www.gssoc.tech/images/type-logo.png\"\u003e\n\u003c/p\u003e\n\n## 👨 Project Admin\n- Ambuj Raj \u003cp\u003e[\u003cimg src=\"https://img.icons8.com/windows/32/000000/github-2.png\" display = \"inline-block\"\u003e](https://github.com/ambujraj) [\u003cimg src=\"https://img.icons8.com/ios-glyphs/30/000000/linkedin-2.png\"/\u003e](https://www.linkedin.com/in/ambujraj/)\u003c/p\u003e\n\n## 👬  Mentors\n\nFeel free to ask your queries!! 🙌\n\n## Slack Channel\n\n- [#proj_ambsql](https://gssoc20.slack.com/messages/proj_ambsql)\n\n# License\n[MIT License](https://github.com/ambujraj/AmbSQL/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fambujraj%2Fambsql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fambujraj%2Fambsql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fambujraj%2Fambsql/lists"}