ToDo list du projet kit big data
Project description
To-Do List Python Library
Overview
This project aims to create a comprehensive Python library for managing personal tasks (To-Do List).
Features
The application allows users to:
- Add a new task to the list with at least a name and a description.
- Mark a task as completed.
- Remove a task from the list.
- Display the list of ongoing tasks.
Getting Started
These instructions will get the project up and running on your local machine for development and testing purposes.
Prerequisites
- Python 3.x
- Poetry
Installation
Using Docker
-
Clone the repository:
git clone https://github.com/Nhurbis/projet_kit_big_data.git cd projet_kit_big_data
-
Build and run the Docker container:
docker build -t les_meures . docker run -it -p 7860:7860 les_meures
-
Access the application in your web browser at: http://localhost:7860
Using Poetry
-
Clone the repository:
git clone https://github.com/Nhurbis/projet_kit_big_data.git cd projet_kit_big_data
-
Set up a virtual environment and install dependencies:
poetry install poetry run python main.py
-
Access the application in your web browser at: http://localhost:7860
Task Manager CLI
The Task Manager CLI is a command-line tool for managing your tasks and task lists. Here is a guide on how to use it.
Installation
Ensure you have installed all the necessary dependencies and configured your Python environment correctly before running the application.
Commands
python task_manager_cli.py create_tasklist <title>
python task_manager_cli.py add_task <tasklist_id> <name> <description>
python task_manager_cli.py complete_task <tasklist_id> <task_id>
python task_manager_cli.py delete_task <tasklist_id> <task_id>
python task_manager_cli.py show_incomplete_tasks <tasklist_id>
Example Usage:
python task_manager_cli.py create_tasklist "My Task List"
python task_manager_cli.py add_task <tasklist_id> "Go Shopping" "Buy milk, eggs, and bread"
python task_manager_cli.py complete_task <tasklist_id> 1
python task_manager_cli.py show_incomplete_tasks <tasklist_id>
Testing
We use pytest for unit testing. Run the tests using the following command:
pytest --cov=model tests/
Documentation
The documentation for this project is generated using Sphinx. To build the documentation locally, run the following commands in the docs folder:
make html
Then, open docs/_build/html/index.html in a web browser.
CI/CD
This project is set up with a CI/CD pipeline using GitHub Actions. Any push to the main branch triggers the pipeline, which runs tests, checks code coverage, and deploys the documentation.
Security
As part of this project, and in order to facilitate the teacher's grading process, the decision was made to leave the database connection string visible in the code (instead of using environment variables). Additionally, we are directly returning the _id values to facilitate the use of the very simplistic gradio interface. In a real production environment, these choices would not have been made.
Creating a Python Package & Uploading to PyPI
python setup.py sdist bdist_wheel
twine upload dist/* -u __token__ -p $token_key
Performance Optimization
When managing large amounts of data, it is crucial to optimize the library's performance to ensure a smooth and efficient user experience. Here are some strategies to achieve this, accompanied by examples of technologies and methods:
1. Database Indexing
- Example: Use MongoDB and create indexes on the most frequently searched fields to speed up queries.
2. Efficient Database Queries
- Example: Use SQLAlchemy (Python) to write optimized SQL queries and avoid unnecessary lazy loading.
3. Pagination
- Example: Use Django REST framework API to implement pagination in your API endpoints.
4. Caching
- Example: Use Redis to store the results of frequent queries and reduce response time.
5. Lazy Loading
- Example: Use Vue.js or React to load components on demand and improve client-side performance.
6. Parallelization
- Example: Use asyncio (Python) or CompletableFuture (Java) libraries to parallelize asynchronous operations.
7. Code Profiling and Optimization
- Example: Use tools like Py-Spy (Python) or VisualVM (Java) to profile your application and identify bottlenecks.
8. Efficient Memory Usage
- Example: Use tools like Valgrind to detect memory leaks and optimize memory usage.
9. Batch Processing
- Example: Use Apache Spark or Apache Flink for batch processing of large amounts of data.
10. Update Only When Necessary
- Example: Use a version control system like Git to track changes and avoid unnecessary updates.
11. Use Database Optimization Tools
- Example: Use tools like MySQL Workbench or MongoDB Compass to monitor and optimize database performance.
12. Data Compression
- Example: Use compression algorithms like Gzip to reduce the
size of data transferred over the network.
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 projet_kit_big_data-1.0.0.tar.gz.
File metadata
- Download URL: projet_kit_big_data-1.0.0.tar.gz
- Upload date:
- Size: 430.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a89868ba9742b98e607d1201531d01a118b4e8a10da5c32e99e0adbf303171c7
|
|
| MD5 |
f4adaad9d3c923d6e2ef844d16fa9390
|
|
| BLAKE2b-256 |
410b34354f21779a7c42b80e25f2258c2b6c1f682f9f8a72c99b093c1b42e719
|
File details
Details for the file projet_kit_big_data-1.0.0-py3-none-any.whl.
File metadata
- Download URL: projet_kit_big_data-1.0.0-py3-none-any.whl
- Upload date:
- Size: 470.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc17047266dab2d5afeda35d398e9847cdeb5c6eba0d2c6d37e9f68bf620ceca
|
|
| MD5 |
371ded5edb1108d1210b1594683f496a
|
|
| BLAKE2b-256 |
fd234a156658486304f7c65a22aea5a543c3ee69a1b4d642ba1e43bc305f93c2
|