Metadata-Version: 2.4
Name: smarthomeharmonizer
Version: 0.1.0
Summary: A GenAI assistant-enabled Python framework for bridging IoT devices with voice assistants
Home-page: https://github.com/cppraveen/SmartHomeHarmonizer
Author: Praveen Chinnusamy
Author-email: praveenchinnusamy@gmail.com
Project-URL: Bug Reports, https://github.com/cppraveen/SmartHomeHarmonizer/issues
Project-URL: Source, https://github.com/cppraveen/SmartHomeHarmonizer
Project-URL: Documentation, https://smarthomeharmonizer.readthedocs.io
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Home Automation
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Flask>=2.0.0
Requires-Dist: requests>=2.25.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: pytest-flask>=1.2; extra == "dev"
Requires-Dist: flake8>=6.0; extra == "dev"
Requires-Dist: black>=23.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Requires-Dist: sphinx>=6.0; extra == "dev"
Requires-Dist: tox>=4.0; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# SmartHomeHarmonizer

[![CI](https://github.com/yourusername/SmartHomeHarmonizer/workflows/CI/badge.svg)](https://github.com/yourusername/SmartHomeHarmonizer/actions)
[![codecov](https://codecov.io/gh/yourusername/SmartHomeHarmonizer/branch/main/graph/badge.svg)](https://codecov.io/gh/yourusername/SmartHomeHarmonizer)
[![Documentation Status](https://readthedocs.org/projects/smarthomeharmonizer/badge/?version=latest)](https://smarthomeharmonizer.readthedocs.io/en/latest/?badge=latest)
[![PyPI version](https://badge.fury.io/py/smarthomeharmonizer.svg)](https://badge.fury.io/py/smarthomeharmonizer)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![JOSS](https://joss.theoj.org/papers/10.21105/joss.xxxxx/status.svg)](https://doi.org/10.21105/joss.xxxxx)

A lightweight Python framework for bridging IoT devices with voice assistants (Amazon Alexa, Google Assistant, and Apple HomeKit).

## 🎯 Overview

SmartHomeHarmonizer simplifies the integration of custom IoT devices with popular voice assistants by providing:

- **Unified API**: Single RESTful interface for all voice assistant platforms
- **Modular Architecture**: Easy-to-implement device adapters
- **Lightweight Design**: Minimal resource footprint suitable for Raspberry Pi
- **Platform Agnostic**: Works with Alexa, Google Assistant, and HomeKit
- **Research Friendly**: Designed for experimentation and education

## 🚀 Quick Start

### Installation

```bash
pip install smarthomeharmonizer
```

### Basic Usage

```python
from smarthomeharmonizer import create_app, DeviceManager
from smarthomeharmonizer.adapters.smart_light import SmartLightAdapter

# Create device manager
manager = DeviceManager()

# Register a smart light
light = SmartLightAdapter('light1', 'Living Room Light')
manager.register_device(light)

# Create Flask app
app = create_app(manager)

# Run the server
if __name__ == '__main__':
    app.run(host='0.0.0.0', port=5000)
```

### Control Your Device

```bash
# Turn on the light
curl -X POST http://localhost:5000/api/v1/devices/light1/command \
  -H "Content-Type: application/json" \
  -d '{"command": "turnOn"}'

# Set brightness
curl -X POST http://localhost:5000/api/v1/devices/light1/command \
  -H "Content-Type: application/json" \
  -d '{"command": "setBrightness", "parameters": {"brightness": 75}}'

# Get device state
curl http://localhost:5000/api/v1/devices/light1/state
```

## 📚 Documentation

Full documentation is available at [https://smarthomeharmonizer.readthedocs.io](https://smarthomeharmonizer.readthedocs.io)

### Key Features

- **Device Adapters**: Implement custom adapters for any IoT device
- **Voice Assistant Integration**: Step-by-step guides for Alexa, Google, and HomeKit
- **RESTful API**: Well-documented endpoints for device control
- **Error Handling**: Comprehensive error handling and logging
- **Thread Safety**: Safe concurrent access to device states
- **Extensible**: Easy to add new device types and platforms

## 🛠️ Creating Custom Device Adapters

```python
from smarthomeharmonizer.adapters.base import DeviceAdapter
from typing import Dict, Any, List, Optional

class MyCustomDeviceAdapter(DeviceAdapter):
    """Adapter for my custom IoT device."""
    
    def _initialize_state(self) -> Dict[str, Any]:
        return {
            'power': False,
            'mode': 'auto'
        }
    
    def get_supported_commands(self) -> List[str]:
        return ['turnOn', 'turnOff', 'setMode', 'getStatus']
    
    def execute_command(self, command: str, parameters: Optional[Dict[str, Any]] = None) -> Dict[str, Any]:
        if command == 'turnOn':
            self._state['power'] = True
        elif command == 'turnOff':
            self._state['power'] = False
        elif command == 'setMode':
            mode = parameters.get('mode', 'auto')
            if mode in ['auto', 'manual', 'eco']:
                self._state['mode'] = mode
            else:
                raise ValueError(f"Invalid mode: {mode}")
        
        return self.get_state()
```

## 🧪 Testing

Run the test suite:

```bash
# Install development dependencies
pip install -e ".[dev]"

# Run tests with coverage
pytest --cov=smarthomeharmonizer

# Run linting
flake8 smarthomeharmonizer tests

# Run type checking
mypy smarthomeharmonizer
```

## 🤝 Contributing

We welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details.

1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request

## 📊 Performance

SmartHomeHarmonizer is designed for efficiency:

- **Memory Usage**: ~50MB base footprint
- **Response Time**: <10ms for local commands
- **Concurrent Devices**: Tested with 100+ simultaneous devices
- **Platform Support**: Runs on Raspberry Pi 3B+ and newer

## 🔒 Security Considerations

- Always use HTTPS in production
- Implement proper authentication for cloud deployments
- Follow voice assistant platform security guidelines
- Keep dependencies updated

## 📜 License

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

## 🙏 Acknowledgments

- Thanks to all contributors and early adopters
- Inspired by the open-source home automation community
- Built with Flask and the Python ecosystem

## 📖 Citation

If you use SmartHomeHarmonizer in your research, please cite:

```bibtex
@article{YourName2025,
  title = {SmartHomeHarmonizer: A Lightweight Python Framework for Bridging IoT Devices with Voice Assistants},
  author = {Your Name and Collaborators},
  journal = {Journal of Open Source Software},
  year = {2025},
  volume = {X},
  number = {X},
  pages = {XXXX},
  doi = {10.21105/joss.XXXXX}
}
```

## 🐛 Found a Bug?

Please [open an issue](https://github.com/yourusername/SmartHomeHarmonizer/issues) with a detailed description and steps to reproduce.
