{"id":20303178,"url":"https://github.com/bredalis/sqlite3python","last_synced_at":"2026-05-01T20:31:58.825Z","repository":{"id":241399676,"uuid":"805816169","full_name":"Bredalis/SQLite3Python","owner":"Bredalis","description":"✨ BBDD SQL ✨","archived":false,"fork":false,"pushed_at":"2026-02-22T03:31:08.000Z","size":41,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-22T10:32:10.494Z","etag":null,"topics":["bbdd","database","python","relational-databases","sql","sqlite","sqlite3","sqlite3-database"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Bredalis.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-05-25T14:41:03.000Z","updated_at":"2026-02-22T03:31:11.000Z","dependencies_parsed_at":"2024-07-14T20:51:16.666Z","dependency_job_id":"71a2888c-a6bd-4eba-ab1c-88b8a06c139f","html_url":"https://github.com/Bredalis/SQLite3Python","commit_stats":null,"previous_names":["bredalis/sqlite3python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Bredalis/SQLite3Python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bredalis%2FSQLite3Python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bredalis%2FSQLite3Python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bredalis%2FSQLite3Python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bredalis%2FSQLite3Python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bredalis","download_url":"https://codeload.github.com/Bredalis/SQLite3Python/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bredalis%2FSQLite3Python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32512662,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bbdd","database","python","relational-databases","sql","sqlite","sqlite3","sqlite3-database"],"created_at":"2024-11-14T16:36:12.920Z","updated_at":"2026-05-01T20:31:58.785Z","avatar_url":"https://github.com/Bredalis.png","language":"Python","readme":"\u003ch1\u003e\u003cb\u003eSQLite3 with Python 🛢️🐍\u003c/b\u003e\u003c/h1\u003e\n\n\u003ca href=\"https://www.python.org\" target=\"_blank\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Python-3.x-52BE80?logo=python\u0026logoColor=white\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://docs.python.org/3/library/sqlite3.html\" target=\"_blank\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/SQLite3-Built--in-5DADE2\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://sqlitebrowser.org/\" target=\"_blank\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/DB%20Browser-Optional-E5E7E9\"\u003e\n\u003c/a\u003e\n\n\u003cbr\u003e\u003cbr\u003e\n\n\u003cimg src=\"https://i.pinimg.com/236x/ad/a4/5d/ada45de2675b6b4425137f160db5e9c2.jpg\"\u003e\n\n\u003cp\u003e\nThis repository contains practical examples developed in \u003cb\u003ePython\u003c/b\u003e using the built-in \n\u003cb\u003eSQLite3\u003c/b\u003e library. The goal is to teach how to connect, create, query, and manipulate \ndatabases in a simple and clear way. 💻🛢️\n\u003cbr\u003e\u003cbr\u003e\nThe examples are especially designed for beginners who want to understand how to work with \nlocal databases without the need to install complex systems.\n\u003c/p\u003e\n\n---\n\n## ✨ Features\n\n✅ SQLite database connection  \n✅ Table creation  \n✅ Data insertion (CRUD)  \n✅ Queries and filters  \n✅ Safe connection closing  \n✅ Simple and easy-to-understand examples  \n\n---\n\n## 📂 Project Structure\n\n```\n\nSQLite3Python/\n│\n├── data/\n│   └── database.db\n│\n├── src/                   # main code\n│   ├── crud.py\n│   ├── delete.py\n│   ├── insert.py\n│   └── ...\n│\n├── README.md        # Documentation\n├── LICENSE\n└── .gitignore\n\n````\n\n---\n\n## 🖥️ Requirements\n\n- Python 3.x\n- SQLite3 (included by default in Python)\n- DB Browser for SQLite (optional, to visualize the database)\n\n---\n\n## ⚙️ Installation\n\nClone the repository:\n\n```bash\ngit clone https://github.com/Bredalis/SQLite3Python.git\n````\n\nEnter the directory:\n\n```bash\ncd SQLite3Python\n```\n\n---\n\n## 🚀 Usage\n\nRun any Python file from the project:\n\n```bash\npython main.py\n```\n\nTo visualize the database:\n\n1. Open **DB Browser for SQLite**\n2. Load the `.db` file from the repository\n\n---\n\n## 🧠 Code Example\n\n```python\nfrom crud import Crud\n\ncrud = Crud(\"../data/database.db\", \"report\")\n\ncrud.insert_data(1, \"Perla\", \"Mendoza\", \"15-9-1998\")\ncrud.close_database()\n\n```\n\n---\n\n## 📜 License\n\nThis project is licensed under \u003ca href=\"https://www.gnu.org/licenses/gpl-3.0.en.html\" target=\"_blank\"\u003e\nGPLv3 (GNU General Public License v3.0) \u003c/a\u003e\n\n---\n\n## 👩‍💻 Author\n\n\u003cimg src=\"https://avatars.githubusercontent.com/u/111624948?s=400\" width=\"80\" style=\"border-radius:50%\"\u003e\n\n**Bredalis Gautreaux**\n\n[![Github](https://img.shields.io/github/followers/Bredalis?label=Follow\\\u0026style=social)](https://github.com/Bredalis)\n[![LinkedIn](https://img.shields.io/badge/-LinkedIn-blue?style=flat-square\\\u0026logo=Linkedin\\\u0026logoColor=white)](https://www.linkedin.com/in/bredalis-gautreaux/)\n\n😊 Programmer passionate about technology, artificial intelligence, and continuous learning.\n#python #sqlite #ai #nlp\n\n---\n\n## ⭐ Support the Project\n\nIf this repository helped you, consider giving it a ⭐ on GitHub.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbredalis%2Fsqlite3python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbredalis%2Fsqlite3python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbredalis%2Fsqlite3python/lists"}