Metadata-Version: 2.4
Name: safie-mediafile
Version: 0.1.4
Summary: A Python library and command-line tool for downloading media files from Safie cameras
Project-URL: Homepage, https://github.com/example/safie-mediafile
Project-URL: Issues, https://github.com/example/safie-mediafile/issues
Author-email: Example Author <author@example.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: httpx>=0.24.0
Provides-Extra: cli
Requires-Dist: click>=8.0.0; extra == 'cli'
Requires-Dist: python-dateutil>=2.9.0.post0; extra == 'cli'
Provides-Extra: dev
Requires-Dist: mypy>=1.9.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.1.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Requires-Dist: ruff>=0.3.0; extra == 'dev'
Requires-Dist: types-python-dateutil>=2.9.0.20241206; extra == 'dev'
Description-Content-Type: text/markdown

# Safie Media File Downloader

![Lint and Test](https://github.com/syundo0730/safie-mediafile/actions/workflows/lint-and-test.yml/badge.svg)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/safie-mediafile)
![GitHub License](https://img.shields.io/github/license/syundo0730/safie-mediafile)


A Python library and command-line tool for downloading media files from Safie cameras.

## Installation

### Library with CLI Tool

If you also want to use the command-line tool:

```bash
pip install "safie-mediafile[cli]"
```

### Library Only

If you want to use only the library functionality:

```bash
pip install safie-mediafile
```


## Usage

### Command Line Interface

You can download media files using either the device serial number or device name:

```bash
# Using serial number
safie-mediafile --serial 201055433 2024-03-22T10:00:00Z 2024-03-22T11:00:00Z --api-token YOUR_API_TOKEN

# Using device name
safie-mediafile --name "Camera Name" 2024-03-22T10:00:00Z 2024-03-22T11:00:00Z --api-token YOUR_API_TOKEN

# Specifying an output file path
safie-mediafile --serial 201055433 2024-03-22T10:00:00Z 2024-03-22T11:00:00Z --output-path output.mp4 --api-token YOUR_API_TOKEN
```

You can also set the API token using the `SAFIE_TOKEN` environment variable:

```bash
# Set API token as an environment variable
export SAFIE_TOKEN=YOUR_API_TOKEN
safie-mediafile --serial 201055433 2024-03-22T10:00:00Z 2024-03-22T11:00:00Z
```

Note: The command-line interface is only available if you install the package with the `cli` extra.

### Python API

```python
import asyncio
from datetime import datetime
from safie_mediafile import find_device_id, create_and_download_mediafile

async def download_media():
    # Set up time (ISO 8601 format)
    start = datetime.fromisoformat("2024-03-22T10:00:00+09:00")
    end = datetime.fromisoformat("2024-03-22T11:00:00+09:00")

    # Get device ID (search by serial number or name)
    device_id = await find_device_id(
        api_token="your_api_token",
        serial="201055433",  # or name="Camera Name" (use either one)
    )

    # Create and download media file
    with open("output.mp4", "wb") as f:
        await create_and_download_mediafile(
            device_id=device_id,
            start_time=start,
            end_time=end,
            file=f,  # file object opened in binary mode
            api_token="your_api_token",
        )

if __name__ == "__main__":
    asyncio.run(download_media())
```

## Requirements

### Core Library
- Python 3.8 or later
- `httpx` for HTTP requests

### CLI Tool (Optional)
- `click` for command-line interface
- `python-dateutil` for timezone handling

## Development

### Setup Development Environment

```bash
# Clone the repository
git clone https://github.com/syundo0730/safie-mediafile.git
cd safie-mediafile

# Install uv if not already installed
# For macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# Install development dependencies using uv
uv pip install -e ".[dev,cli]"
```

### Running Tests

```bash
# Run all tests
uv run pytest

# Run tests with coverage
uv run pytest --cov=safie_mediafile tests/
```

### Code Quality

```bash
# Run linter
uv run ruff check .

# Run type checker
uv run mypy safie_mediafile
```

## Releasing

This package uses GitHub Actions to automatically build and publish to PyPI when a new release is created.

### Release Process

1. Update the version in `pyproject.toml`
2. Create and push a new tag:
   ```bash
   git tag v0.1.0
   git push origin v0.1.0
   ```
3. Create a new release on GitHub using the tag
4. The GitHub Actions workflow will automatically build and publish to PyPI

## License

MIT License
