Metadata-Version: 2.1
Name: moodle-to-vikwikiquiz
Version: 2.1.0
Summary: A CLI for converting graded Moodle quiz HTMLs to a vik.wiki quiz wikitext
Author-email: Máté Gyöngyösi <melees00_quern@icloud.com>
Project-URL: Homepage, https://github.com/gy-mate/moodle-to-vikwikiquiz
Project-URL: Issues, https://github.com/gy-mate/moodle-to-vikwikiquiz/issues
Project-URL: Funding, https://github.com/sponsors/gy-mate
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Typing :: Typed
Classifier: Intended Audience :: Education
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4 ==4.13.5
Requires-Dist: plum-dispatch ==2.5.7
Requires-Dist: pylatexenc ==2.10
Requires-Dist: pyperclip ==1.10.0
Requires-Dist: Send2Trash ==1.8.3
Provides-Extra: dev
Requires-Dist: black ==25.9.0 ; extra == 'dev'
Requires-Dist: mypy ==1.18.2 ; extra == 'dev'
Requires-Dist: types-beautifulsoup4 ==4.12.0.20250516 ; extra == 'dev'

# 🎓 moodle-to-vikwikiquiz

![Lines of code](https://img.shields.io/badge/lines_of_code-1k-blue)
[![Build status](https://scrutinizer-ci.com/g/gy-mate/moodle-to-vikwikiquiz/badges/build.png?b=main)](https://scrutinizer-ci.com/g/gy-mate/moodle-to-vikwikiquiz/build-status/main)
[![Code quality](https://img.shields.io/scrutinizer/quality/g/gy-mate/moodle-to-vikwikiquiz/main)](https://scrutinizer-ci.com/g/gy-mate/moodle-to-vikwikiquiz/)
[![Type hinting used](https://img.shields.io/badge/type_hinting-used-brightgreen)](https://docs.python.org/3/library/typing.html)
[![Code style: Black](https://img.shields.io/badge/code_style-black-black.svg)](https://github.com/psf/black)

[![Recent activity](https://img.shields.io/github/commit-activity/m/gy-mate/moodle-to-vikwikiquiz)](https://github.com/gy-mate/moodle-to-vikwikiquiz/commits/main/)
![Commits since latest release](https://img.shields.io/github/commits-since/gy-mate/moodle-to-vikwikiquiz/latest)
[![PRs welcome](https://img.shields.io/badge/PRs-welcome-brightgreen)](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request)


## 📖 About

A CLI for converting graded and downloaded [Moodle quizzes](https://docs.moodle.org/404/en/Quiz_activity) to a [vik.viki quiz](https://vik.wiki/Segítség:Kvíz) wikitext.


## 📥 Installation

### 🌍 Global

1. [Install `uv`](https://docs.astral.sh/uv/getting-started/installation/#installation-methods)
1. _If using Linux: [follow these steps](https://github.com/asweigart/pyperclip/blob/master/docs/index.rst#not-implemented-error)._
1. Run the following command in the terminal:

    ```bash
    uv tool install moodle-to-vikwikiquiz
    ```
   
### 🏠 Local


#### 🛠️ Executable `zipapp`

1. Download the `.pyz` file of the latest release from [here](https://github.com/gy-mate/moodle-to-vikwikiquiz/releases/latest).
1. Run the following commands in the terminal:

    ```bash
    chmod +x moodle-to-vikwikiquiz_x.x.x.pyz
    ./moodle-to-vikwikiquiz_x.x.x.pyz [parameters]
    ```


## 🧑‍💻 Usage

```text
moodle-to-vikwikiquiz [--verbose|-v] [--new|-n] [--recursive|-r] source_path
```

Parameters:
* `--new`: Create a new quiz on [vik.wiki](https://vik.wiki/) by automatically opening an edit page for the new article.
* `--recursive`: Import HTML files from the current directory recursively.
* `source_path`: The absolute or relative path of the file or directory where the Moodle quiz HTML files are located.
  These HTML files should contain the _Review_ page of the quizzes.

Always check and correct the output before submitting it to the wiki!
This includes uploading all images and adding their filenames to the quiz manually.


### 📋 Features

* Imports multiple HTML files at once (recursively, if desired)
* Supports true or false, single and multiple choice questions
* Opens an existing article or creates a new one on [vik.wiki](https://vik.wiki/) with the edit summary pre-filled
* Formats LaTeX equations as wikitext
* Adds the only remaining correct answer automatically if it can be determined from the grade
* Asks for correct answers if it can't be determined from a graded question
* Deduplicates questions with the same text
* Prepares illustrations for batch upload
    * If they are unavailable: creates placeholders for them
* Copies the generated wikitext to the clipboard


### 🏫 Compatibility

| file format   | tested                    | can it be imported? |
|---------------|---------------------------|---------------------|
| `.html`       | ✅                         | ✅                   |
| `.webarchive` | yes, except illustrations | ✅                   |
| `.mhtml`      | ❌                         | maybe               |
| all others    | ❌                         | maybe               |

| Moodle instance                       | tested | can it import a quiz from there? |
|---------------------------------------|--------|----------------------------------|
| [BME VIK](https://edu.vik.bme.hu)     | ✅      | ✅                                |
| [BME VIK HIT](https://www.hit.bme.hu) | ❌      | ❌                                |
| [BME GTK](https://edu.gtk.bme.hu)     | ✅      | ✅                                |

| Moodle language | is it understood by the app? |
|-----------------|------------------------------|
| Hungarian       | ✅                            |
| English         | ✅                            |
| German          | ❌                            |


### ⏫ Updating

Run the following command in the terminal:

```bash
uv tool upgrade --all
```

If you want this to run automatically, create a cron job:

1. Open the `crontab` file:
    ```bash
    crontab -e
    ```

1. Add this line to the beginning of the file:
    ```bash
    PATH=~/.local/bin
    ```
    If there is already a line beginning with `PATH=`, add `:~/.local/bin` to the end of it.

1. Add the following line to the end of the file:
    ```bash
    @daily		uv tool upgrade --all
    ```
   You may replace `@daily` with `@weekly` or `@monthly`.


## 🧑‍💻 Development

### ⌨️ Developing

1. Create a `venv`:
    ```bash
    uv venv
    ```
1. Activate the `venv` in your IDE
1. Install the dependencies:
    ```bash
    uv sync --extra dev
    ```

### 📤 Release

#### 🛠️ Setup

1. Install `vermin`:
    ```bash
    uv tool install vermin
1. Check the minimum Python version:
    ```bash
    vermin --backport argparse --backport enum --backport typing_extensions --eval-annotations .
    ```
1. If the result is higher than the one in [`pyproject.toml`](pyproject.toml), update it.
1. Bump the version number:
    ```bash
    uv version --bump [major|minor|patch]
    ```
1. Commit and push the changes

### 🏗️ Building

To build a repruducible `zipapp` (`.pyz`):

1. Install [`shiv`](https://github.com/linkedin/shiv):
    ```bash
    uv tool install shiv
    ```
1. Create the executable:
    ```bash
    shiv --entry-point moodle_to_vikwikiquiz.main:main --output-file moodle-to-vikwikiquiz.pyz --reproducible .
    ```
1. _Optional: compare its hash with the one of the [latest release](https://github.com/gy-mate/moodle-to-vikwikiquiz/releases/)._


## 📜 License

This project is licensed under the _GNU General Public License v3.0_.
See the [license](copying.txt) file (or the _GPL-3.0 license_ tab on GitHub) for its full text.
