Metadata-Version: 2.4
Name: student-repos-handler
Version: 3.1.0
Summary: Simple tool to handle multiple repos at once, oriented to the grading of assignments in UCSE DAR
Project-URL: Homepage, https://github.com/fisadev/student-repos-handler
Author-email: Juan Pedro Fisanotti <fisadev@gmail.com>
License: MIT License
        
        Copyright (c) 2017 Juan Pedro Fisanotti
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.4
Requires-Dist: pyyaml
Requires-Dist: requests
Requires-Dist: termcolor
Description-Content-Type: text/markdown

# Student-repos-handler

Simple tool to handle multiple repos at once, oriented to the grading of assignments in courses.
It allows you to clone and update multiple repos at once, run commands in them, show summaries of the results, easily find and edit files, browse wiki pages, etc.

This tool is meant to run in a linux environment, though most of the functionality also runs in other OSs.
It was built mostly to solve my own needs while grading AI assignments in UCSE DAR, but it's general enough to be used by anyone else.

# Installation

Recommended (requires [uv](https://docs.astral.sh/uv/getting-started/installation/)):

```
uv tool install student-repos-handler
```

You can also install it with pip or any other python package manager.

# Usage

First you need to create a `repos.config` file in a directory where you will manage all of your students repos (for instance, something like `/home/fisa/university_ai_course/2026_teams/`).
In this file you will specify some configs for each repo you want to manage, plus some general configs related to the tools you want to use (code editor and browser).
Example contents:

```yaml
editor: vscode
browser: firefox
repos:
    capybara_team:
        repo_url: git@github.com:capybara_team/assignments.git
        description: "Alice Capybara, Bob Capybara, tags: experts,using_python,pending_grade"
        server_url: https://www.team_capybara_website.com
        has_wiki: true
    toad_team:
        repo_url: https://github.com/toad_team/grupo2_gomez_failla_ia_2026.git
        description: "John Toad, Julia Toad, tags: novices,using_go,already_approved"
    # ... and so on
```

With your `repos.config` file created, you can start using the `repos` command line tool from that directory. 
You will probably want to run a `repos update` for the first time so all the repos are cloned, and then you can explore the rest of the utilities by checking the help with `repos help`.
