exam-terminal


Nameexam-terminal JSON
Version 0.2.11 PyPI version JSON
download
home_pagehttps://github.com/ismet55555/exam-terminal
SummaryA terminal-based exam, text, or survey tool for educators and learners
upload_time2023-12-25 05:41:13
maintainerIsmet Handzic
docs_urlNone
authorIsmet Handzic
requires_python>=3.7
license
keywords exam quiz assessment survey teach learn
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            <p align="center"><img width="150" alt="portfolio_view" src="https://raw.githubusercontent.com/ismet55555/exam-terminal/master/misc/logo.png"></p>

<h1 align="center">exam-terminal</h1>

<!-- Licence Shield from https://shields.io/-->
<p align="center">

<a href="https://pypi.org/project/exam-terminal/">
  <img alt="PYPI Version" src="https://img.shields.io/pypi/v/exam-terminal?color=blue">
</a>

<a href="https://pypi.org/project/exam-terminal/">
  <img alt="Python Versions" src="https://img.shields.io/pypi/pyversions/exam-terminal">
</a>

<a href="https://pypi.org/project/exam-terminal/">
  <img alt="Packaging Format" src="https://img.shields.io/pypi/format/exam-terminal">
</a>

<a href="https://pypi.org/project/exam-terminal/">
  <img alt="PYPI Status" src="https://img.shields.io/pypi/status/exam-terminal">
</a>

<a href="https://github.com/ismet55555/exam-terminal/blob/master/LICENSE">
  <img alt="Licence" src="https://img.shields.io/github/license/ismet55555/exam-terminal">
</a>

<a href="https://travis-ci.com/github/ismet55555/exam-terminal">
  <img alt="Build Status" src="https://img.shields.io/travis/com/ismet55555/exam-terminal/master">
</a>

<a href="https://www.codacy.com/gh/ismet55555/exam-terminal/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=ismet55555/exam-terminal&amp;utm_campaign=Badge_Grade">
  <img src="https://app.codacy.com/project/badge/Grade/dc108e18f27b4b86a9f6304745e6869c"/>
</a>
</p>

The `exam-terminal` is a terminal-based assessment tool. It can be used for making, taking, or delivering exams or quizzes.

<p align="center"><img width="725" alt="demo_gif" src="https://raw.githubusercontent.com/ismet55555/exam-terminal/master/misc/demo.gif"></p>

Exam description can be loaded form a local file or a remote URL link.

The exam results include your general exam score, some basic statistics, and the ability to export your results to a PDF document.

### Very Basically ...

- Use `exam-terminal` to take or give exams in a terminal

<p align="center"><a href="https://www.buymeacoffee.com/ismet55555" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a></p>

<!-- ################################################ -->

# :eyeglasses: Overview

- [:eyeglasses: Overview](#eyeglasses-overview)
- [:fast_forward: Quick Start](#fast_forward-quick-start)
- [:thumbsup: Compatibility](#thumbsup-compatibility)
- [:rocket: Installation](#rocket-installation)
  - [Install It From PYPI (pre-build)](#install-it-from-pypi-pre-build)
  - [Manually Build and Install it Yourself](#manually-build-and-install-it-yourself)
- [:boom: Usage](#boom-usage)
- [:pencil: Exam Creation](#pencil-exam-creation)
  - [Examfile Format](#examfile-format)
  - [Exam File Structure](#exam-file-structure)
  - [Exam File Section: `exam`](#exam-file-section-exam)
    - [Example](#example)
  - [Exam File Section: `questions`](#exam-file-section-questions)
    - [Answer Selection](#answer-selection)
    - [Example](#example-1)
- [:bust_in_silhouette: Contributors](#bust_in_silhouette-contributors)
- [:computer: Development Notes](#computer-development-notes)
- [Licence](#licence)

<!-- ################################################ -->

# :fast_forward: Quick Start

```bash
# 1. Install it with pip package manager
pip install exam-terminal

# 2. Checkout the help
exam-terminal --help

# 3. Try out a sample exam
exam-terminal --sample

# 4. Try a remote sample exam
exam-terminal --examfile https://raw.githubusercontent.com/ismet55555/exam-terminal/master/exam_terminal/exams/sample_exam.yml

# Make and load your own exams using YAML format (See below)
```

<!-- ################################################ -->

# :thumbsup: Compatibility

As of now the following Python 3 versions are tested and supported:

- Python 3.7, 3.8, 3.9, 3.10

For the following platforms:

- OSX, Windows, Linux (Debian based)

To check which python version you have, open a terminal and type `python --version`

<!-- ################################################ -->

# :rocket: Installation

## Install It From PYPI (pre-build)

1.  Ensure internet connection
2.  Open up a terminal (or PowerShell) on your computer
3.  Ensure python is installed and has compatible version
    - `python --version`
    - If it is not, install it. [Human Readable Guide](https://realpython.com/installing-python/)
4.  Ensure that `pip`, `setuptools`, and `wheel` are installed an up to date
    - `python -m pip install --upgrade pip setuptools wheel`
5.  Install that `exam-terminal` from PYPI
    - `pip install exam-terminal`

## Manually Build and Install it Yourself

These following steps are useful if you do not have access to the internet on a particular machine.

1. Download/Clone this entire `exam-terminal` GitHub repository
2. Copy it to some temporary location on the computer you wish to install `exam-terminal` on (ie. Downloads)
3. Open up a terminal (or PowerShell) on your computer
4. Use the `cd` command to change directory into the `exam-terminal` directory
   - Example: `cd /home/username/Downloads/exam-terminal`
5. Ensure python is installed and has compatible version
   - `python --version`
   - If it is not, install it. [Human Readable Guide](https://realpython.com/installing-python/)
6. Ensure that `pip`, `setuptools`, and `wheel` are installed an up to date
   - `python -m pip install --upgrade pip setuptools wheel`
7. Install that `exam-terminal`
   - `python setup.py install`

<!-- ################################################ -->

# :boom: Usage

To load a local exam file located on your computer, or load a remote exam file located somewhere on the internet, use the `--examfile` or `-e` option flag.

If the file location contains a space, please use single or double quotes

Examples:

```bash
# Locally stored exam file
exam-terminal --examfile home/USERNAME/Downloads/examfile.yml
exam-terminal --examfile "C:\Users\YOU\My Stuff\algebra_exam.yml"

# Remotely requested exam file
exam-terminal -examfile https://raw.githubusercontent.com/ismet55555/exam-terminal/master/exam_terminal/exams/sample_exam.yml
```

**NOTE**: For help enter `exam-terminal --help`

<!-- ################################################ -->

# :pencil: Exam Creation

Exams are described within examfiles. A full example of an exam file can be seen here: [exam file](exam_terminal/exams/sample_exam.yml)

## Examfile Format

Exam description files are made using the YAML file format (`.yml` or `.yaml`), human-readable structured data format. If you are not familiar with YAML, there are lots of sources explaining it, [here is one](https://blog.stackpath.com/yaml/#:~:text=Definition,used%20to%20write%20configuration%20files.). An example of a examfile description in YAML format [can be viewed here](exam_terminal/exams/sample_exam.yml).

The exam file should be named with the `.yml` or `.yaml` file extension.

## Exam File Structure

Examfiles have two major sections:

1. `exam` - General information about the entire exam. This includes info like exam title or allowed exam time
2. `questions` - Information/Description for each question. This section includes each question and available selections for that question.

An outline of the examfile looks like this:

```yaml
exam: ...
questions:
  - question: ...
    selection:
      - ...
      - ...
  - question: ...
    selection:
      - ...
      - ...
  - ...
```

## Exam File Section: `exam`

This section describes the general information about the exam. The following are the available exam descriptions.

**NOTE**: _As of now all of the exam descriptions are required_

| Item                      | Description                                         | Example                                    |
| ------------------------- | --------------------------------------------------- | ------------------------------------------ |
| `exam_title`              | The general title of the exam                       | `AWS Kiwi Practice Exam`                   |
| `exam_description`        | A longer more detailed description of the exam      | `This exam assess your knowledge on kiwis` |
| `exam_author`             | The name of the person or entity that made the exam | `Pappa McJameson`                          |
| `exam_edit_date`          | The date when the exam was last edited              | `01/01/1970`                               |
| `exam_allwed_time`        | Total exam time allowed                             | `120`                                      |
| `exam_allowed_time_units` | The time units that describe `exam_allowed_time`    | `seconds`                                  |
| `exam_passing_score`      | Minimum passing score percentage for the exam       | `70`                                       |

### Example

```yaml
exam:
  exam_title: "The One Exam"
  exam_description: This exam will assess your ability to be the one. You chose that one pill now you gotta do work and prove you can fly around the matrix and stuff.
  exam_author: "Neo"
  exam_edit_date: "06/06/2199"
  exam_allowed_time: 240
  exam_allowed_time_units: "seconds"
  exam_passing_score: 95
```

## Exam File Section: `questions`

This section describes each question in the exam. The following are the available options for each question:

| Item                    | Description                                                                    | Example                       |
| ----------------------- | ------------------------------------------------------------------------------ | ----------------------------- |
| `question`              | Question text shown to the exam taker                                          | `What's your favorite color?` |
| `question_allowed_time` | (Optional) Total time allowed for the specific question in seconds             | `60`                          |
| `selection`             | List of answer selections for the user.<br>Correct answers denoted by `: true` | `- green`<br>`- black: true`  |

### Answer Selection

To denoted the correct answer in the `selection` section, simply add at `: true` to the end of the selection. You can have more than one correct answer, that is, multiple `: true` denoted questions.

### Example

```yaml
---
questions:
  - question: What is your hobby?
    selection:
      - Politics
      - Programming: true
      - TV
      - Chillin: true
      - Reading: true
```

**NOTE**: If there is more than one correct (`true`) answer, the question automatically becomes a multi-answer question, allowing the exam taker to select multiple selections.

<!-- ################################################ -->

# :bust_in_silhouette: Contributors

**Ismet Handžić** - GitHub: [@ismet55555](https://github.com/ismet55555)

<!-- ################################################ -->

# :computer: Development Notes

If you are eying this repo and thinking "Hey this is kind of neat, I'd love to add a few things", well this is your chance :-)

There is definetly work to be done. If you don't have a genius great idea for the next big change, there is a [`TODO.md`](TODO.md) file which outlines some changes, features, and fixes that would be nice to have.

For some guides on how to help out, checkout the `dev_stuff` directory.

<!-- ################################################ -->

# Licence

This project is licensed under the Apache 2.0 License - Please see the [LICENSE](LICENSE) file for details.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ismet55555/exam-terminal",
    "name": "exam-terminal",
    "maintainer": "Ismet Handzic",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "exam quiz assessment survey teach learn",
    "author": "Ismet Handzic",
    "author_email": "ismet.handzic@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e7/cb/ef631e81e27dcd5ae55af1b4a8f57f59f7d8657172a9547c8f4d68b19c03/exam-terminal-0.2.11.tar.gz",
    "platform": null,
    "description": "<p align=\"center\"><img width=\"150\" alt=\"portfolio_view\" src=\"https://raw.githubusercontent.com/ismet55555/exam-terminal/master/misc/logo.png\"></p>\n\n<h1 align=\"center\">exam-terminal</h1>\n\n<!-- Licence Shield from https://shields.io/-->\n<p align=\"center\">\n\n<a href=\"https://pypi.org/project/exam-terminal/\">\n  <img alt=\"PYPI Version\" src=\"https://img.shields.io/pypi/v/exam-terminal?color=blue\">\n</a>\n\n<a href=\"https://pypi.org/project/exam-terminal/\">\n  <img alt=\"Python Versions\" src=\"https://img.shields.io/pypi/pyversions/exam-terminal\">\n</a>\n\n<a href=\"https://pypi.org/project/exam-terminal/\">\n  <img alt=\"Packaging Format\" src=\"https://img.shields.io/pypi/format/exam-terminal\">\n</a>\n\n<a href=\"https://pypi.org/project/exam-terminal/\">\n  <img alt=\"PYPI Status\" src=\"https://img.shields.io/pypi/status/exam-terminal\">\n</a>\n\n<a href=\"https://github.com/ismet55555/exam-terminal/blob/master/LICENSE\">\n  <img alt=\"Licence\" src=\"https://img.shields.io/github/license/ismet55555/exam-terminal\">\n</a>\n\n<a href=\"https://travis-ci.com/github/ismet55555/exam-terminal\">\n  <img alt=\"Build Status\" src=\"https://img.shields.io/travis/com/ismet55555/exam-terminal/master\">\n</a>\n\n<a href=\"https://www.codacy.com/gh/ismet55555/exam-terminal/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=ismet55555/exam-terminal&amp;utm_campaign=Badge_Grade\">\n  <img src=\"https://app.codacy.com/project/badge/Grade/dc108e18f27b4b86a9f6304745e6869c\"/>\n</a>\n</p>\n\nThe `exam-terminal` is a terminal-based assessment tool. It can be used for making, taking, or delivering exams or quizzes.\n\n<p align=\"center\"><img width=\"725\" alt=\"demo_gif\" src=\"https://raw.githubusercontent.com/ismet55555/exam-terminal/master/misc/demo.gif\"></p>\n\nExam description can be loaded form a local file or a remote URL link.\n\nThe exam results include your general exam score, some basic statistics, and the ability to export your results to a PDF document.\n\n### Very Basically ...\n\n- Use `exam-terminal` to take or give exams in a terminal\n\n<p align=\"center\"><a href=\"https://www.buymeacoffee.com/ismet55555\" target=\"_blank\"><img src=\"https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png\" alt=\"Buy Me A Coffee\" style=\"height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;\" ></a></p>\n\n<!-- ################################################ -->\n\n# :eyeglasses: Overview\n\n- [:eyeglasses: Overview](#eyeglasses-overview)\n- [:fast_forward: Quick Start](#fast_forward-quick-start)\n- [:thumbsup: Compatibility](#thumbsup-compatibility)\n- [:rocket: Installation](#rocket-installation)\n  - [Install It From PYPI (pre-build)](#install-it-from-pypi-pre-build)\n  - [Manually Build and Install it Yourself](#manually-build-and-install-it-yourself)\n- [:boom: Usage](#boom-usage)\n- [:pencil: Exam Creation](#pencil-exam-creation)\n  - [Examfile Format](#examfile-format)\n  - [Exam File Structure](#exam-file-structure)\n  - [Exam File Section: `exam`](#exam-file-section-exam)\n    - [Example](#example)\n  - [Exam File Section: `questions`](#exam-file-section-questions)\n    - [Answer Selection](#answer-selection)\n    - [Example](#example-1)\n- [:bust_in_silhouette: Contributors](#bust_in_silhouette-contributors)\n- [:computer: Development Notes](#computer-development-notes)\n- [Licence](#licence)\n\n<!-- ################################################ -->\n\n# :fast_forward: Quick Start\n\n```bash\n# 1. Install it with pip package manager\npip install exam-terminal\n\n# 2. Checkout the help\nexam-terminal --help\n\n# 3. Try out a sample exam\nexam-terminal --sample\n\n# 4. Try a remote sample exam\nexam-terminal --examfile https://raw.githubusercontent.com/ismet55555/exam-terminal/master/exam_terminal/exams/sample_exam.yml\n\n# Make and load your own exams using YAML format (See below)\n```\n\n<!-- ################################################ -->\n\n# :thumbsup: Compatibility\n\nAs of now the following Python 3 versions are tested and supported:\n\n- Python 3.7, 3.8, 3.9, 3.10\n\nFor the following platforms:\n\n- OSX, Windows, Linux (Debian based)\n\nTo check which python version you have, open a terminal and type `python --version`\n\n<!-- ################################################ -->\n\n# :rocket: Installation\n\n## Install It From PYPI (pre-build)\n\n1.  Ensure internet connection\n2.  Open up a terminal (or PowerShell) on your computer\n3.  Ensure python is installed and has compatible version\n    - `python --version`\n    - If it is not, install it. [Human Readable Guide](https://realpython.com/installing-python/)\n4.  Ensure that `pip`, `setuptools`, and `wheel` are installed an up to date\n    - `python -m pip install --upgrade pip setuptools wheel`\n5.  Install that `exam-terminal` from PYPI\n    - `pip install exam-terminal`\n\n## Manually Build and Install it Yourself\n\nThese following steps are useful if you do not have access to the internet on a particular machine.\n\n1. Download/Clone this entire `exam-terminal` GitHub repository\n2. Copy it to some temporary location on the computer you wish to install `exam-terminal` on (ie. Downloads)\n3. Open up a terminal (or PowerShell) on your computer\n4. Use the `cd` command to change directory into the `exam-terminal` directory\n   - Example: `cd /home/username/Downloads/exam-terminal`\n5. Ensure python is installed and has compatible version\n   - `python --version`\n   - If it is not, install it. [Human Readable Guide](https://realpython.com/installing-python/)\n6. Ensure that `pip`, `setuptools`, and `wheel` are installed an up to date\n   - `python -m pip install --upgrade pip setuptools wheel`\n7. Install that `exam-terminal`\n   - `python setup.py install`\n\n<!-- ################################################ -->\n\n# :boom: Usage\n\nTo load a local exam file located on your computer, or load a remote exam file located somewhere on the internet, use the `--examfile` or `-e` option flag.\n\nIf the file location contains a space, please use single or double quotes\n\nExamples:\n\n```bash\n# Locally stored exam file\nexam-terminal --examfile home/USERNAME/Downloads/examfile.yml\nexam-terminal --examfile \"C:\\Users\\YOU\\My Stuff\\algebra_exam.yml\"\n\n# Remotely requested exam file\nexam-terminal -examfile https://raw.githubusercontent.com/ismet55555/exam-terminal/master/exam_terminal/exams/sample_exam.yml\n```\n\n**NOTE**: For help enter `exam-terminal --help`\n\n<!-- ################################################ -->\n\n# :pencil: Exam Creation\n\nExams are described within examfiles. A full example of an exam file can be seen here: [exam file](exam_terminal/exams/sample_exam.yml)\n\n## Examfile Format\n\nExam description files are made using the YAML file format (`.yml` or `.yaml`), human-readable structured data format. If you are not familiar with YAML, there are lots of sources explaining it, [here is one](https://blog.stackpath.com/yaml/#:~:text=Definition,used%20to%20write%20configuration%20files.). An example of a examfile description in YAML format [can be viewed here](exam_terminal/exams/sample_exam.yml).\n\nThe exam file should be named with the `.yml` or `.yaml` file extension.\n\n## Exam File Structure\n\nExamfiles have two major sections:\n\n1. `exam` - General information about the entire exam. This includes info like exam title or allowed exam time\n2. `questions` - Information/Description for each question. This section includes each question and available selections for that question.\n\nAn outline of the examfile looks like this:\n\n```yaml\nexam: ...\nquestions:\n  - question: ...\n    selection:\n      - ...\n      - ...\n  - question: ...\n    selection:\n      - ...\n      - ...\n  - ...\n```\n\n## Exam File Section: `exam`\n\nThis section describes the general information about the exam. The following are the available exam descriptions.\n\n**NOTE**: _As of now all of the exam descriptions are required_\n\n| Item                      | Description                                         | Example                                    |\n| ------------------------- | --------------------------------------------------- | ------------------------------------------ |\n| `exam_title`              | The general title of the exam                       | `AWS Kiwi Practice Exam`                   |\n| `exam_description`        | A longer more detailed description of the exam      | `This exam assess your knowledge on kiwis` |\n| `exam_author`             | The name of the person or entity that made the exam | `Pappa McJameson`                          |\n| `exam_edit_date`          | The date when the exam was last edited              | `01/01/1970`                               |\n| `exam_allwed_time`        | Total exam time allowed                             | `120`                                      |\n| `exam_allowed_time_units` | The time units that describe `exam_allowed_time`    | `seconds`                                  |\n| `exam_passing_score`      | Minimum passing score percentage for the exam       | `70`                                       |\n\n### Example\n\n```yaml\nexam:\n  exam_title: \"The One Exam\"\n  exam_description: This exam will assess your ability to be the one. You chose that one pill now you gotta do work and prove you can fly around the matrix and stuff.\n  exam_author: \"Neo\"\n  exam_edit_date: \"06/06/2199\"\n  exam_allowed_time: 240\n  exam_allowed_time_units: \"seconds\"\n  exam_passing_score: 95\n```\n\n## Exam File Section: `questions`\n\nThis section describes each question in the exam. The following are the available options for each question:\n\n| Item                    | Description                                                                    | Example                       |\n| ----------------------- | ------------------------------------------------------------------------------ | ----------------------------- |\n| `question`              | Question text shown to the exam taker                                          | `What's your favorite color?` |\n| `question_allowed_time` | (Optional) Total time allowed for the specific question in seconds             | `60`                          |\n| `selection`             | List of answer selections for the user.<br>Correct answers denoted by `: true` | `- green`<br>`- black: true`  |\n\n### Answer Selection\n\nTo denoted the correct answer in the `selection` section, simply add at `: true` to the end of the selection. You can have more than one correct answer, that is, multiple `: true` denoted questions.\n\n### Example\n\n```yaml\n---\nquestions:\n  - question: What is your hobby?\n    selection:\n      - Politics\n      - Programming: true\n      - TV\n      - Chillin: true\n      - Reading: true\n```\n\n**NOTE**: If there is more than one correct (`true`) answer, the question automatically becomes a multi-answer question, allowing the exam taker to select multiple selections.\n\n<!-- ################################################ -->\n\n# :bust_in_silhouette: Contributors\n\n**Ismet Hand\u017ei\u0107** - GitHub: [@ismet55555](https://github.com/ismet55555)\n\n<!-- ################################################ -->\n\n# :computer: Development Notes\n\nIf you are eying this repo and thinking \"Hey this is kind of neat, I'd love to add a few things\", well this is your chance :-)\n\nThere is definetly work to be done. If you don't have a genius great idea for the next big change, there is a [`TODO.md`](TODO.md) file which outlines some changes, features, and fixes that would be nice to have.\n\nFor some guides on how to help out, checkout the `dev_stuff` directory.\n\n<!-- ################################################ -->\n\n# Licence\n\nThis project is licensed under the Apache 2.0 License - Please see the [LICENSE](LICENSE) file for details.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A terminal-based exam, text, or survey tool for educators and learners",
    "version": "0.2.11",
    "project_urls": {
        "Homepage": "https://github.com/ismet55555/exam-terminal"
    },
    "split_keywords": [
        "exam",
        "quiz",
        "assessment",
        "survey",
        "teach",
        "learn"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b03e1493966a9290ad6a2c1af4bea2f196116c28731c42d90be86788a18fb60f",
                "md5": "1114c5c1574b2efe453c00a4cbdcedd2",
                "sha256": "44ca50ff314f422c30f87661c7529ba73104f0064629f2e44f750a9004f25c8e"
            },
            "downloads": -1,
            "filename": "exam_terminal-0.2.11-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1114c5c1574b2efe453c00a4cbdcedd2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 27154,
            "upload_time": "2023-12-25T05:41:11",
            "upload_time_iso_8601": "2023-12-25T05:41:11.850832Z",
            "url": "https://files.pythonhosted.org/packages/b0/3e/1493966a9290ad6a2c1af4bea2f196116c28731c42d90be86788a18fb60f/exam_terminal-0.2.11-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7cbef631e81e27dcd5ae55af1b4a8f57f59f7d8657172a9547c8f4d68b19c03",
                "md5": "8a0298d2a6bb99d61971a2806d939f6e",
                "sha256": "2e30c6fd11feb929a3d021bd554bde8d332f4b20d760b02638dab1fbad879ed1"
            },
            "downloads": -1,
            "filename": "exam-terminal-0.2.11.tar.gz",
            "has_sig": false,
            "md5_digest": "8a0298d2a6bb99d61971a2806d939f6e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 29929,
            "upload_time": "2023-12-25T05:41:13",
            "upload_time_iso_8601": "2023-12-25T05:41:13.917755Z",
            "url": "https://files.pythonhosted.org/packages/e7/cb/ef631e81e27dcd5ae55af1b4a8f57f59f7d8657172a9547c8f4d68b19c03/exam-terminal-0.2.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-25 05:41:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ismet55555",
    "github_project": "exam-terminal",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "exam-terminal"
}
        
Elapsed time: 0.16009s