Metadata-Version: 2.4
Name: smartpaste-ai
Version: 1.0.0
Summary: A context-aware AI clipboard assistant that enriches content and saves organized markdown files
Project-URL: Homepage, https://github.com/AbdHajjar/smartpaste
Project-URL: Repository, https://github.com/AbdHajjar/smartpaste
Project-URL: Issues, https://github.com/AbdHajjar/smartpaste/issues
Author: SmartPaste Contributors
License-Expression: MIT
License-File: LICENSE
Keywords: ai,automation,clipboard,markdown,productivity
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business
Classifier: Topic :: Text Processing :: Markup :: Markdown
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Requires-Dist: beautifulsoup4>=4.12.0
Requires-Dist: click>=8.1.0
Requires-Dist: langdetect>=1.0.9
Requires-Dist: lxml>=4.9.0
Requires-Dist: numpy>=1.24.0
Requires-Dist: pillow>=10.0.0
Requires-Dist: pyperclip>=1.8.2
Requires-Dist: pyyaml>=6.0.1
Requires-Dist: readability-lxml>=0.8.1
Requires-Dist: requests>=2.31.0
Requires-Dist: scikit-learn>=1.3.0
Requires-Dist: sentence-transformers>=2.2.2
Provides-Extra: dev
Requires-Dist: black>=23.7.0; extra == 'dev'
Requires-Dist: flake8>=6.0.0; extra == 'dev'
Requires-Dist: mypy>=1.5.0; extra == 'dev'
Requires-Dist: pre-commit>=3.3.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.1.0; extra == 'dev'
Requires-Dist: pytest>=7.4.0; extra == 'dev'
Provides-Extra: ocr
Requires-Dist: pytesseract>=0.3.10; extra == 'ocr'
Description-Content-Type: text/markdown

# SmartPaste 📋✨

A context-aware AI clipboard assistant that intelligently enriches your clipboard content and organizes it into beautiful markdown files.

![License](https://img.shields.io/badge/license-MIT-blue.svg)
![Python](https://img.shields.io/badge/python-3.10+-blue.svg)
![Version](https://img.shields.io/badge/version-1.0.0-green.svg)

## 🎯 What is SmartPaste?

SmartPaste monitors your clipboard in the background and automatically enriches content with intelligent context:

- **URLs** → Extracts titles, generates summaries, and identifies key topics
- **Numbers with units** → Provides automatic conversions (°C/°F, km/miles, kg/lbs, etc.)
- **Text content** → Detects language, creates summaries, and analyzes content
- **Images** → Extracts text using OCR (optional)
- **Code** → Detects programming languages and provides syntax analysis
- **Email** → Parses email addresses and formats email content
- **Math** → Evaluates mathematical expressions and equations

All processed content is automatically saved to organized daily markdown files, making your clipboard history searchable and useful forever.

## 🚀 Quick Start

### Installation

#### Option 1: Install from PyPI (Recommended)

```bash
# Install SmartPaste AI
pip install smartpaste-ai

# Create configuration file
smartpaste --help  # This will show you where to place config.yaml

# Run SmartPaste
smartpaste
```

#### Option 2: Install from Source

```bash
# Clone the repository
git clone https://github.com/AbdHajjar/smartpaste.git
cd smartpaste

# Install dependencies
pip install -e .

# Copy example configuration
cp config.example.yaml config.yaml

# Run SmartPaste
smartpaste
```

### Basic Usage

1. **Start monitoring**: Run `smartpaste` in your terminal
2. **Copy anything**: URLs, text, numbers with units - SmartPaste handles it all
3. **Check your files**: Find enriched content in `./smartpaste_data/YYYY-MM-DD.md`

## ✨ Features

### 🌐 URL Enhancement
```
Input:  https://example.com/article
Output: [Article Title]
        Summary: Brief description of the article content...
        Keywords: technology, innovation, future
        Link: https://example.com/article
```

### 🔢 Unit Conversion
```
Input:  Temperature is 25°C
Output: Temperature is 25°C
        
        Conversions:
        25°C = 77.0 °F, 298.15 K
```

### 📝 Text Analysis
```
Input:  Long article or text content...
Output: [English] TL;DR: Concise summary of the main points...
        
        [Original content follows...]
```

### 🖼️ OCR Text Extraction (Optional)
```
Input:  [Image with text]
Output: Image Text: Extracted text from the image using OCR
```

## ⚙️ Configuration

SmartPaste is highly configurable. Edit `config.yaml` to customize:

### General Settings
```yaml
general:
  output_directory: "./smartpaste_data"  # Where to save files
  replace_clipboard: false               # Replace clipboard with enriched content
  check_interval: 0.5                   # Clipboard check frequency (seconds)
  max_content_length: 10000             # Maximum content length to process
```

### Feature Toggles
```yaml
features:
  url_handler: true      # Enable URL processing
  number_handler: true   # Enable unit conversions
  text_handler: true     # Enable text analysis
  image_handler: false   # Enable OCR (requires pytesseract)
```

### Handler-Specific Settings
```yaml
url_handler:
  extract_title: true
  generate_summary: true
  extract_keywords: true
  max_keywords: 3
  request_timeout: 10

text_handler:
  detect_language: true
  generate_summary: true
  min_text_length: 50
  supported_languages: ["en", "de", "fr", "es", "it"]
```

## 📦 Dependencies

### Core Dependencies
- **pyperclip** - Clipboard access
- **pyyaml** - Configuration management
- **click** - Command-line interface
- **requests** - Web content fetching
- **beautifulsoup4** - HTML parsing
- **readability-lxml** - Content extraction
- **langdetect** - Language detection
- **sentence-transformers** - Advanced NLP
- **scikit-learn** - Machine learning utilities

### Optional Dependencies
- **pytesseract** - OCR functionality (install with `pip install smartpaste-ai[ocr]`)
- **pillow** - Image processing

### Development Dependencies
- **pytest** - Testing framework
- **black** - Code formatting
- **mypy** - Type checking
- **flake8** - Linting

## 🛠️ Development

### Setting Up Development Environment

```bash
# Clone and install in development mode
git clone https://github.com/AbdHajjar/smartpaste.git
cd smartpaste
pip install -e ".[dev,ocr]"

# Run tests
pytest

# Format code
black .

# Type checking
mypy smartpaste/

# Linting
flake8 smartpaste/
```

### Project Structure

```
smartpaste/
├── smartpaste/           # Main package
│   ├── __init__.py
│   ├── main.py          # Entry point and main application
│   ├── handlers/        # Content type handlers
│   │   ├── __init__.py
│   │   ├── url.py       # URL processing
│   │   ├── number.py    # Unit conversions
│   │   ├── text.py      # Text analysis
│   │   └── image.py     # OCR processing
│   └── utils/           # Utility modules
│       ├── __init__.py
│       ├── io.py        # File I/O operations
│       ├── nlp.py       # NLP utilities
│       └── timebox.py   # Time/date utilities
├── tests/               # Test suite
├── pyproject.toml       # Project configuration
├── config.example.yaml  # Example configuration
└── README.md
```

### Running Tests

```bash
# Run all tests
pytest

# Run specific test categories
pytest -m unit           # Unit tests only
pytest -m integration    # Integration tests only
pytest -m "not slow"     # Skip slow tests

# Run with coverage
pytest --cov=smartpaste --cov-report=html
```

## 🤝 Contributing

We welcome contributions! Here's how you can help:

### Adding New Content Handlers

1. Create a new handler in `smartpaste/handlers/`:
```python
class MyHandler:
    def __init__(self, config=None):
        self.config = config or {}
    
    def process(self, content):
        # Process content and return enriched result
        return {
            "original_content": content,
            "processed_data": "...",
            "enriched_content": "..."
        }
```

2. Register it in `smartpaste/handlers/__init__.py`
3. Add configuration options to `config.example.yaml`
4. Write tests in `tests/test_myhandler.py`

### Improvement Ideas
- **New content types**: Code snippets, mathematical formulas, geographic coordinates
- **Export formats**: HTML, PDF, JSON exports
- **Cloud integration**: Sync with Google Drive, Dropbox, etc.
- **AI enhancements**: Better summarization, sentiment analysis, topic modeling
- **Performance**: Background processing, caching, indexing

## 📋 Roadmap

### Version 0.2 (Next Release)
- [ ] Improved text summarization with transformer models
- [ ] Plugin system for custom handlers
- [ ] Web dashboard for browsing clipboard history
- [ ] Export functionality (HTML, PDF)

### Version 0.3 (Future)
- [ ] Cloud synchronization
- [ ] Mobile companion app
- [ ] Advanced search and filtering
- [ ] Custom AI model integration

### Version 1.0 (Stable)
- [ ] Full Windows/macOS/Linux support
- [ ] Installer packages
- [ ] Professional documentation
- [ ] Performance optimizations

## 🔧 System Requirements

- **Python**: 3.10 or higher
- **Operating System**: Windows, macOS, Linux
- **Memory**: 256MB RAM minimum
- **Storage**: 50MB disk space
- **Optional**: Tesseract OCR for image text extraction

## 📚 Examples

### Example Output File (`2024-01-15.md`)

```markdown
# SmartPaste - 2024-01-15

Auto-generated clipboard content analysis.

---

## 14:32:15 - url

**Source:** clipboard

**Title:** Revolutionary AI Breakthrough Announced
**Summary:** Scientists have developed a new AI system that can understand context better than previous models...
**Keywords:** artificial intelligence, breakthrough, technology
**Link:** [https://example.com/ai-news](https://example.com/ai-news)

---

## 14:35:22 - number

**Source:** clipboard

**Original:** 72 °F

**Conversions:**
- 22.22 °C
- 295.37 K

---

## 14:38:45 - text

**Source:** clipboard

**Language:** English
**Summary:** Discussion about the benefits of automation in modern workflows and productivity improvements.
**Word Count:** 284

[Original text content...]

---
```

## 🆘 Troubleshooting

### Common Issues

**Q: SmartPaste isn't detecting clipboard changes**
A: Check that no other applications are blocking clipboard access. Try running as administrator (Windows) or granting accessibility permissions (macOS).

**Q: OCR isn't working**
A: Install Tesseract OCR: `pip install smartpaste-ai[ocr]` and ensure Tesseract is in your system PATH.

**Q: Language detection is incorrect**
A: Language detection works best with longer text samples (50+ characters). Short texts may be misidentified.

**Q: Web requests are timing out**
A: Increase `request_timeout` in your config.yaml or check your internet connection.

### Getting Help

- 📧 **Issues**: [GitHub Issues](https://github.com/AbdHajjar/smartpaste/issues)
- 💬 **Discussions**: [GitHub Discussions](https://github.com/AbdHajjar/smartpaste/discussions)
- 📖 **Documentation**: [Wiki](https://github.com/AbdHajjar/smartpaste/wiki)

## 📄 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## 🙏 Acknowledgments

- **readability-lxml** for clean content extraction
- **sentence-transformers** for advanced NLP capabilities
- **pytesseract** for OCR functionality
- **The open-source community** for amazing tools and libraries

---

**Made with ❤️ by the SmartPaste community**

*Transform your clipboard into an intelligent knowledge assistant!*