https://github.com/parzibyte/crud-sqlite3-python
Consumir base de datos de SQLite3 con Python
https://github.com/parzibyte/crud-sqlite3-python
crud database python sqlite3
Last synced: about 2 months ago
JSON representation
Consumir base de datos de SQLite3 con Python
- Host: GitHub
- URL: https://github.com/parzibyte/crud-sqlite3-python
- Owner: parzibyte
- License: mit
- Created: 2019-06-14T15:41:14.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-14T15:42:47.000Z (about 7 years ago)
- Last Synced: 2025-01-25T14:27:16.457Z (over 1 year ago)
- Topics: crud, database, python, sqlite3
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Consumir base de datos de SQLite3 con Python
Veremos cómo crear, leer, actualizar y eliminar registros en SQLite3 usando Python 3. Es decir, haremos un CRUD con SQLite. Para ello lo único que necesitamos es [instalar Python](https://parzibyte.me/blog/2017/11/19/instalar-configurar-python-3-windows-10/). La librería que permite gestionar la base de datos ya viene incluida.
El tutorial está en: https://parzibyte.me/blog/2017/11/21/python-3-sqlite-3-introduccion-ejemplos/