Metadata-Version: 2.4
Name: canvas-instructor-tools
Version: 0.1.0a0
Summary: A collection of tools for automating Canvas LMS instructor operations.
Author-email: George Perdrizet <george@perdrizet.org>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Requires-Dist: canvasapi>=3.0.0
Requires-Dist: python-dotenv>=1.0.0
Description-Content-Type: text/markdown

# Canvas Tools

A Python package for automating common instructor operations on the Canvas LMS.

## Features

*   **Download Submissions**: Bulk download all file submissions for a specific assignment, automatically renaming them with the student's name.

## Installation

```bash
pip install canvas-tools
```

## Configuration

Create a `.env` file in your working directory with your Canvas credentials:

```ini
CANVAS_API_URL=https://your.institution.instructure.com
CANVAS_API_KEY=your_api_key_here
```

## Usage

### Command Line Interface

To download submissions for a specific assignment:

```bash
# Syntax: canvas-tools download <course_id> <assignment_id>
canvas-tools download 12345 67890
```

Optional arguments:
*   `--output` or `-o`: Specify the output directory (default: current directory)

### Python API

```python
from canvas_tools import download_assignment_submissions

download_assignment_submissions(
    course_id=12345, 
    assignment_id=67890, 
    output_dir="my_downloads"
)
```

## Development

1.  Clone the repository.
2.  Install dependencies: `pip install -e .`
3.  Run tests: `python -m unittest discover tests`

## CI/CD & Publishing

This project uses GitHub Actions for automated testing and publishing.

### Workflow Overview

*   **CI (`.github/workflows/ci.yml`)**: Runs on every Pull Request and push to `main`.
    *   Tests across Python 3.11, 3.12, and 3.13.
    *   Verifies the package builds successfully.
*   **Publish (`.github/workflows/publish.yml`)**: Runs when a GitHub Release is published.
    *   Builds the package.
    *   Publishes to **TestPyPI** and **PyPI** using Trusted Publishing (OIDC).

### How to Publish a New Version

1.  **Update Version**:
    *   Edit `pyproject.toml` and increment the `version` (e.g., `0.0.1` -> `0.0.2`).
    *   Commit and push to `main`.

2.  **Create Release**:
    *   Go to the GitHub repository page.
    *   Click **Releases** > **Draft a new release**.
    *   **Tag version**: `v0.0.2` (matching your `pyproject.toml`).
    *   **Title**: `v0.0.2`.
    *   Click **Publish release**.

3.  **Verify**:
    *   Check the **Actions** tab to see the `Publish to PyPI` workflow running.
    *   Once green, verify the new version is available on [PyPI](https://pypi.org/project/canvas-tools/).
