A Python-based clipboard history manager that automatically monitors and stores clipboard content, allowing users to access their previous clipboard entries.
- Real-time clipboard monitoring
- Persistent storage of clipboard history
- View clipboard history with timestamps
- Copy entries back to clipboard
- Configurable history size
- JSON-based storage for easy access
pyperclip
pip install pyperclippython clipboard_history_manager.py- The program monitors your clipboard every second
- When new content is detected, it's automatically saved to history
- Each entry includes the text, timestamp, and character count
- History is persisted in a JSON file for future access
- You can view and restore previous clipboard entries
Contributed as part of the 100LinesOfPythonCode repository
Fixes #755 - Clipboard History Manager