Pequeño gestor de tareas en Python
Project description
To Do List de Jhon
Pequeño gestor de tareas en Python pensado para demostrar estructuras de control:
- Selección:
if,elif,else - Repetición:
for,while,break,continue - Excepciones:
try,except,else,finally
Este proyecto es una aplicación sencilla de To-Do List para guardar tareas en local. Utiliza un archivo JSON para almacenar los datos y un dict de Python para manejarlos internamente.
Características
- Ver tareas
- Agregar tarea
- Marcar tareas como completadas
- Eliminar tareas
- Listar todas las tareas
- Guardado automático en JSON
- Manejo interno mediante dict
Almacenamiento y estructura
Archivo JSON (tareas.json)
Las tareas se guardan en un archivo JSON con una estructura como esta:
{
"tasks": [
{
"titulo": "Limpiar",
"prioridad": "alta",
"hecho": true
},
{
"titulo": "Comer",
"prioridad": "alta",
"hecho": false
}
]
}
El proyecto está pensado para empaquetarse y subirse a TestPyPI
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file to_do_list_jhon-0.0.1.tar.gz.
File metadata
- Download URL: to_do_list_jhon-0.0.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c054a0e76de9862e14958221f5afa4fb23f29a948003cb0b974c4ee3bffcd768
|
|
| MD5 |
201635e8d3689372e3eea2019e7b3b67
|
|
| BLAKE2b-256 |
c3b8a5e370bc4d433ba803334f19b5f40c673e7366b766dbf44c4189bb409386
|
File details
Details for the file to_do_list_jhon-0.0.1-py3-none-any.whl.
File metadata
- Download URL: to_do_list_jhon-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32974f7368b988b7624c04e0a77612e3add1e819c49904e4b987dc7d1c48040f
|
|
| MD5 |
020c5f0b74acd78dbb821509cdf1fd7d
|
|
| BLAKE2b-256 |
fca9702d4475fb235da8f851a0aca39d31c1ec0f0c8cb63e0d6cddb0f7b15cad
|