Metadata-Version: 2.1
Name: cs3560cli
Version: 0.1.4a2
Summary: A set of internal tools for Ohio University's CS3560 course
License: MIT License
        
        Copyright (c) 2023 OU-CS3560
        
        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.
        
Project-URL: Homepage, https://github.com/OU-CS3560/cs3560cli
Project-URL: Repository, https://github.com/OU-CS3560/cs3560cli.git
Project-URL: Issues, https://github.com/OU-CS3560/cs3560cli/issues
Project-URL: Changelog, https://github.com/OU-CS3560/cs3560cli/blob/main/CHANGELOG.md
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: Pygments
Requires-Dist: rich
Requires-Dist: ruamel.yaml
Requires-Dist: tqdm
Requires-Dist: watchdog
Requires-Dist: importlib-metadata; python_version > "3.8"
Requires-Dist: requests

# cs3560cli

A set of internal tools for [Ohio University](https://www.ohio.edu/)'s CS3560 course, open-sourced.

## Installation

```console
python -m pip install cs3560cli
```

## Usage

```console
python -m cs3560cli --help
```

## Features

### watch-zip

Watch for an archive file and extract it.

Usage

```console
$ python -m cs3560cli watch-zip .
$ python -m cs3560cli watch-zip ~/Downloads
```

### highlight

Create a syntax highlight code block with in-line style. The result can thus be embed into a content of LMS.

### create-gitignore

Create a `.gitignore` file using content from [github/gitignore repository](https://github.com/github/gitignore).

Usage

```console
$ python -m cs3560cli create-gitignore python
$ python -m cs3560cli create-gitignore cpp
```

By default, it also add `windows` and `macos` to the `.gitignore` file.

### check-username
