Home About Projects Travel Others

Python Scripts

Here you'll find a collection of Python scripts I've created for various purposes. All scripts are available for download and come with detailed documentation.

Image Processor bach

Image Processor batch

This script goes through all your pictures recursively in a defined directory and resize them in another folder. My computer managed to go through 70 000 pictures and compressed them into a 10Go folder size. I could then upload them all on Google Photos (15Go Free) to have all my pictures within my fingertips all on my mobile device.

Download Script

Features

  • select source and destination folder
  • Keep original intact
  • define maximum size per pics default 150Ko
  • Batch processing (can take 6hours +)
  • Customized compression level
  • use GPU over CPU functionality

Requirements

  • Python 3.7+
  • TensorFlow 2.4+
  • Pillow
  • NumPy

Usage Example

python3 compress.py
Image Processor Preview
System Monitor Icon

Linux System Monitor

A real-time performance visualization tool for Linux systems. Monitor CPU, memory, disk, and network usage with a clean, customizable dashboard.

Download Script

Features

  • Real-time monitoring of system resources
  • Customizable dashboard with various visualization options
  • Alert system for resource thresholds
  • Data logging for historical analysis

Requirements

  • Python 3.6+
  • psutil
  • matplotlib
  • tkinter (for GUI version)

Usage Example

python system_monitor.py --interval 5 --log-file system_stats.log
System Monitor Preview
Data Visualization Icon

Data Visualization Tool

Create interactive data visualizations from CSV files. This tool automatically generates insightful charts and graphs based on your data structure.

Download Script

Features

  • Automatic data type detection
  • Multiple visualization types (bar, line, scatter, pie, etc.)
  • Interactive dashboard with filtering options
  • Export to various formats (PNG, SVG, PDF)

Requirements

  • Python 3.7+
  • pandas
  • matplotlib
  • seaborn
  • plotly (for interactive visualizations)

Usage Example

python data_viz.py --input sales_data.csv --chart-type line --x-col date --y-col revenue
Data Visualization Preview
Backup Tool Icon

Smart Backup Tool

An intelligent backup system for Linux that analyzes file changes and prioritizes critical data. Features incremental backups, compression, and optional cloud integration.

Download Script

Features

  • Intelligent file change detection
  • Incremental and differential backup options
  • Backup encryption
  • Optional cloud storage integration (Google Drive, Dropbox)
  • Scheduled backups with cron integration

Requirements

  • Python 3.6+
  • rsync (for efficient file transfers)
  • cryptography (for encryption)
  • Optional: API libraries for cloud services

Usage Example

python smart_backup.py --source /home/user/documents --destination /backup --encrypt --incremental
Backup Tool Preview

Linux Tools & Tutorials

A collection of Linux tools, configurations, and tutorials I've created to help optimize and customize Linux systems.

Custom Shell Configuration

My personal Bash/Zsh configuration with productivity enhancements, custom aliases, and useful functions.

Download Config Files

System Optimization Scripts

A collection of scripts to optimize Linux system performance, including memory management and startup optimization.

Download Scripts

Automated Backup Solution

A complete backup solution with scheduling, encryption, and support for multiple backup destinations.

View Tutorial

Docker Development Environment

My Docker-based development environment setup for Python, web development, and data science.

View Tutorial