pubquiz


Namepubquiz JSON
Version 0.0.5 PyPI version JSON
download
home_pagehttps://github.com/elinscott/pubquiz
SummaryPython utilities for writing pub quizzes
upload_time2024-01-15 21:23:06
maintainerEdward Linscott
docs_urlNone
authorEdward Linscott
requires_python>=3.8
licenseMIT
keywords snekpack cookiecutter
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!--
<p align="center">
  <img src="https://github.com/elinscott/pubquiz/raw/main/docs/source/logo.png" height="150">
</p>
-->

<h1 align="center">
  pubquiz
</h1>

<p align="center">
    <a href="https://github.com/elinscott/pubquiz/actions/workflows/tests.yml">
        <img alt="Tests" src="https://github.com/elinscott/pubquiz/workflows/Tests/badge.svg" /></a>
    <a href="https://pypi.org/project/pubquiz">
        <img alt="PyPI" src="https://img.shields.io/pypi/v/pubquiz" /></a>
    <a href="https://pypi.org/project/pubquiz">
        <img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/pubquiz" /></a>
    <a href="https://github.com/elinscott/pubquiz/blob/main/LICENSE">
        <img alt="PyPI - License" src="https://img.shields.io/pypi/l/pubquiz" /></a>
    <a href='https://pubquiz.readthedocs.io/en/latest/?badge=latest'>
        <img src='https://readthedocs.org/projects/pubquiz/badge/?version=latest' alt='Documentation Status' /></a>
    <a href="https://codecov.io/gh/elinscott/pubquiz/branch/main">
        <img src="https://codecov.io/gh/elinscott/pubquiz/branch/main/graph/badge.svg" alt="Codecov status" /></a>  
    <a href="https://github.com/cthoyt/cookiecutter-python-package">
        <img alt="Cookiecutter template from @cthoyt" src="https://img.shields.io/badge/Cookiecutter-snekpack-blue" /></a>
    <a href='https://github.com/psf/black'>
        <img src='https://img.shields.io/badge/code%20style-black-000000.svg' alt='Code style: black' /></a>
    <a href="https://github.com/elinscott/pubquiz/blob/main/.github/CODE_OF_CONDUCT.md">
        <img src="https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg" alt="Contributor Covenant"/></a>
</p>

Python utilities for creating slides and answer booklets for pub quizzes.

## 💪 Getting Started

Create all of the files required for a pub quiz by putting all your questions in a ``quiz.yaml`` file and then running the command
```shell
pubquiz make quiz.yaml
```

Of course, the ``quiz.yaml`` contents need to follow a given structure; here is an example:

```yaml
title: My First Quiz
author: Firstname Lastname
rounds:
  - title: First Round
    questions:
       - question: "Hello?"
         answer: "World!" 
  - title: Second Round
    description: Here I explain how this round works
    questions:
       - question: "Testing, testing"
         answer: "One two, one two"
```

### Command Line Interface

The pubquiz command line tool is automatically installed. It can
be used from the shell with the `--help` flag to show all subcommands.

## 🚀 Installation

The most recent release can be installed from
[PyPI](https://pypi.org/project/pubquiz/) with:

```shell
pip install pubquiz
```

The most recent code and data can be installed directly from GitHub with:

```shell
pip install git+https://github.com/elinscott/pubquiz.git
```

## 👐 Contributing

Contributions, whether filing an issue, making a pull request, or forking, are appreciated. See
[CONTRIBUTING.md](https://github.com/elinscott/pubquiz/blob/master/.github/CONTRIBUTING.md) for more information on getting involved.

## 👋 Attribution

### ⚖️ License

The code in this package is licensed under the MIT License.

<!--
### 📖 Citation

Citation goes here!
-->

<!--
### 🎁 Support

This project has been supported by the following organizations (in alphabetical order):

- [Harvard Program in Therapeutic Science - Laboratory of Systems Pharmacology](https://hits.harvard.edu/the-program/laboratory-of-systems-pharmacology/)

-->

<!--
### 💰 Funding

This project has been supported by the following grants:

| Funding Body                                             | Program                                                                                                                       | Grant           |
|----------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|-----------------|
| DARPA                                                    | [Automating Scientific Knowledge Extraction (ASKE)](https://www.darpa.mil/program/automating-scientific-knowledge-extraction) | HR00111990009   |
-->

### 🍪 Cookiecutter

This package was created with [@audreyfeldroy](https://github.com/audreyfeldroy)'s
[cookiecutter](https://github.com/cookiecutter/cookiecutter) package using [@cthoyt](https://github.com/cthoyt)'s
[cookiecutter-snekpack](https://github.com/cthoyt/cookiecutter-snekpack) template.

## 🛠️ For Developers

<details>
  <summary>See developer instructions</summary>

The final section of the README is for if you want to get involved by making a code contribution.

### Development Installation

To install in development mode, use the following:

```bash
git clone git+https://github.com/elinscott/pubquiz.git
cd pubquiz
pip install -e .
```

### 🥼 Testing

After cloning the repository and installing `tox` with `pip install tox`, the unit tests in the `tests/` folder can be
run reproducibly with:

```shell
tox
```

Additionally, these tests are automatically re-run with each commit in a [GitHub Action](https://github.com/elinscott/pubquiz/actions?query=workflow%3ATests).

### 📖 Building the Documentation

The documentation can be built locally using the following:

```shell
git clone git+https://github.com/elinscott/pubquiz.git
cd pubquiz
tox -e docs
open docs/build/html/index.html
``` 

The documentation automatically installs the package as well as the `docs`
extra specified in the [`setup.cfg`](setup.cfg). `sphinx` plugins
like `texext` can be added there. Additionally, they need to be added to the
`extensions` list in [`docs/source/conf.py`](docs/source/conf.py).

The documentation can be deployed to [ReadTheDocs](https://readthedocs.io) using 
[this guide](https://docs.readthedocs.io/en/stable/intro/import-guide.html).
The [`.readthedocs.yml`](.readthedocs.yml) YAML file contains all the configuration you'll need.
You can also set up continuous integration on GitHub to check not only that
Sphinx can build the documentation in an isolated environment (i.e., with ``tox -e docs-test``)
but also that [ReadTheDocs can build it too](https://docs.readthedocs.io/en/stable/pull-requests.html).

### 📦 Making a Release

After installing the package in development mode and installing
`tox` with `pip install tox`, the commands for making a new release are contained within the `finish` environment
in `tox.ini`. Run the following from the shell:

```shell
tox -e finish
```

This script does the following:

1. Uses [Bump2Version](https://github.com/c4urself/bump2version) to switch the version number in the `setup.cfg`,
   `src/pubquiz/version.py`, and [`docs/source/conf.py`](docs/source/conf.py) to not have the `-dev` suffix
2. Packages the code in both a tar archive and a wheel using [`build`](https://github.com/pypa/build)
3. Uploads to PyPI using [`twine`](https://github.com/pypa/twine). Be sure to have a `.pypirc` file configured to avoid the need for manual input at this
   step
4. Push to GitHub. You'll need to make a release going with the commit where the version was bumped.
5. Bump the version to the next patch. If you made big changes and want to bump the version by minor, you can
   use `tox -e bumpversion -- minor` after.
</details>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/elinscott/pubquiz",
    "name": "pubquiz",
    "maintainer": "Edward Linscott",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "edwardlinscott@gmail.com",
    "keywords": "snekpack,cookiecutter",
    "author": "Edward Linscott",
    "author_email": "edwardlinscott@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/9c/d7/f69e2d6d426adffb95cebfa3e9c3ed307a4c0cddd75106951b8e42bff9d1/pubquiz-0.0.5.tar.gz",
    "platform": null,
    "description": "<!--\n<p align=\"center\">\n  <img src=\"https://github.com/elinscott/pubquiz/raw/main/docs/source/logo.png\" height=\"150\">\n</p>\n-->\n\n<h1 align=\"center\">\n  pubquiz\n</h1>\n\n<p align=\"center\">\n    <a href=\"https://github.com/elinscott/pubquiz/actions/workflows/tests.yml\">\n        <img alt=\"Tests\" src=\"https://github.com/elinscott/pubquiz/workflows/Tests/badge.svg\" /></a>\n    <a href=\"https://pypi.org/project/pubquiz\">\n        <img alt=\"PyPI\" src=\"https://img.shields.io/pypi/v/pubquiz\" /></a>\n    <a href=\"https://pypi.org/project/pubquiz\">\n        <img alt=\"PyPI - Python Version\" src=\"https://img.shields.io/pypi/pyversions/pubquiz\" /></a>\n    <a href=\"https://github.com/elinscott/pubquiz/blob/main/LICENSE\">\n        <img alt=\"PyPI - License\" src=\"https://img.shields.io/pypi/l/pubquiz\" /></a>\n    <a href='https://pubquiz.readthedocs.io/en/latest/?badge=latest'>\n        <img src='https://readthedocs.org/projects/pubquiz/badge/?version=latest' alt='Documentation Status' /></a>\n    <a href=\"https://codecov.io/gh/elinscott/pubquiz/branch/main\">\n        <img src=\"https://codecov.io/gh/elinscott/pubquiz/branch/main/graph/badge.svg\" alt=\"Codecov status\" /></a>  \n    <a href=\"https://github.com/cthoyt/cookiecutter-python-package\">\n        <img alt=\"Cookiecutter template from @cthoyt\" src=\"https://img.shields.io/badge/Cookiecutter-snekpack-blue\" /></a>\n    <a href='https://github.com/psf/black'>\n        <img src='https://img.shields.io/badge/code%20style-black-000000.svg' alt='Code style: black' /></a>\n    <a href=\"https://github.com/elinscott/pubquiz/blob/main/.github/CODE_OF_CONDUCT.md\">\n        <img src=\"https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg\" alt=\"Contributor Covenant\"/></a>\n</p>\n\nPython utilities for creating slides and answer booklets for pub quizzes.\n\n## \ud83d\udcaa Getting Started\n\nCreate all of the files required for a pub quiz by putting all your questions in a ``quiz.yaml`` file and then running the command\n```shell\npubquiz make quiz.yaml\n```\n\nOf course, the ``quiz.yaml`` contents need to follow a given structure; here is an example:\n\n```yaml\ntitle: My First Quiz\nauthor: Firstname Lastname\nrounds:\n  - title: First Round\n    questions:\n       - question: \"Hello?\"\n         answer: \"World!\" \n  - title: Second Round\n    description: Here I explain how this round works\n    questions:\n       - question: \"Testing, testing\"\n         answer: \"One two, one two\"\n```\n\n### Command Line Interface\n\nThe pubquiz command line tool is automatically installed. It can\nbe used from the shell with the `--help` flag to show all subcommands.\n\n## \ud83d\ude80 Installation\n\nThe most recent release can be installed from\n[PyPI](https://pypi.org/project/pubquiz/) with:\n\n```shell\npip install pubquiz\n```\n\nThe most recent code and data can be installed directly from GitHub with:\n\n```shell\npip install git+https://github.com/elinscott/pubquiz.git\n```\n\n## \ud83d\udc50 Contributing\n\nContributions, whether filing an issue, making a pull request, or forking, are appreciated. See\n[CONTRIBUTING.md](https://github.com/elinscott/pubquiz/blob/master/.github/CONTRIBUTING.md) for more information on getting involved.\n\n## \ud83d\udc4b Attribution\n\n### \u2696\ufe0f License\n\nThe code in this package is licensed under the MIT License.\n\n<!--\n### \ud83d\udcd6 Citation\n\nCitation goes here!\n-->\n\n<!--\n### \ud83c\udf81 Support\n\nThis project has been supported by the following organizations (in alphabetical order):\n\n- [Harvard Program in Therapeutic Science - Laboratory of Systems Pharmacology](https://hits.harvard.edu/the-program/laboratory-of-systems-pharmacology/)\n\n-->\n\n<!--\n### \ud83d\udcb0 Funding\n\nThis project has been supported by the following grants:\n\n| Funding Body                                             | Program                                                                                                                       | Grant           |\n|----------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|-----------------|\n| DARPA                                                    | [Automating Scientific Knowledge Extraction (ASKE)](https://www.darpa.mil/program/automating-scientific-knowledge-extraction) | HR00111990009   |\n-->\n\n### \ud83c\udf6a Cookiecutter\n\nThis package was created with [@audreyfeldroy](https://github.com/audreyfeldroy)'s\n[cookiecutter](https://github.com/cookiecutter/cookiecutter) package using [@cthoyt](https://github.com/cthoyt)'s\n[cookiecutter-snekpack](https://github.com/cthoyt/cookiecutter-snekpack) template.\n\n## \ud83d\udee0\ufe0f For Developers\n\n<details>\n  <summary>See developer instructions</summary>\n\nThe final section of the README is for if you want to get involved by making a code contribution.\n\n### Development Installation\n\nTo install in development mode, use the following:\n\n```bash\ngit clone git+https://github.com/elinscott/pubquiz.git\ncd pubquiz\npip install -e .\n```\n\n### \ud83e\udd7c Testing\n\nAfter cloning the repository and installing `tox` with `pip install tox`, the unit tests in the `tests/` folder can be\nrun reproducibly with:\n\n```shell\ntox\n```\n\nAdditionally, these tests are automatically re-run with each commit in a [GitHub Action](https://github.com/elinscott/pubquiz/actions?query=workflow%3ATests).\n\n### \ud83d\udcd6 Building the Documentation\n\nThe documentation can be built locally using the following:\n\n```shell\ngit clone git+https://github.com/elinscott/pubquiz.git\ncd pubquiz\ntox -e docs\nopen docs/build/html/index.html\n``` \n\nThe documentation automatically installs the package as well as the `docs`\nextra specified in the [`setup.cfg`](setup.cfg). `sphinx` plugins\nlike `texext` can be added there. Additionally, they need to be added to the\n`extensions` list in [`docs/source/conf.py`](docs/source/conf.py).\n\nThe documentation can be deployed to [ReadTheDocs](https://readthedocs.io) using \n[this guide](https://docs.readthedocs.io/en/stable/intro/import-guide.html).\nThe [`.readthedocs.yml`](.readthedocs.yml) YAML file contains all the configuration you'll need.\nYou can also set up continuous integration on GitHub to check not only that\nSphinx can build the documentation in an isolated environment (i.e., with ``tox -e docs-test``)\nbut also that [ReadTheDocs can build it too](https://docs.readthedocs.io/en/stable/pull-requests.html).\n\n### \ud83d\udce6 Making a Release\n\nAfter installing the package in development mode and installing\n`tox` with `pip install tox`, the commands for making a new release are contained within the `finish` environment\nin `tox.ini`. Run the following from the shell:\n\n```shell\ntox -e finish\n```\n\nThis script does the following:\n\n1. Uses [Bump2Version](https://github.com/c4urself/bump2version) to switch the version number in the `setup.cfg`,\n   `src/pubquiz/version.py`, and [`docs/source/conf.py`](docs/source/conf.py) to not have the `-dev` suffix\n2. Packages the code in both a tar archive and a wheel using [`build`](https://github.com/pypa/build)\n3. Uploads to PyPI using [`twine`](https://github.com/pypa/twine). Be sure to have a `.pypirc` file configured to avoid the need for manual input at this\n   step\n4. Push to GitHub. You'll need to make a release going with the commit where the version was bumped.\n5. Bump the version to the next patch. If you made big changes and want to bump the version by minor, you can\n   use `tox -e bumpversion -- minor` after.\n</details>\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python utilities for writing pub quizzes",
    "version": "0.0.5",
    "project_urls": {
        "Documentation": "https://pubquiz.readthedocs.io",
        "Download": "https://github.com/elinscott/pubquiz/releases",
        "Homepage": "https://github.com/elinscott/pubquiz",
        "Source": "https://github.com/elinscott/pubquiz",
        "Tracker": "https://github.com/elinscott/pubquiz/issues"
    },
    "split_keywords": [
        "snekpack",
        "cookiecutter"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcc2ff2eeb51e531fe84b6e6b459f54e5c400b8d1ba76487486bdd15af35cbe5",
                "md5": "499ebf976aee78ac956e1c0a2777b864",
                "sha256": "71dbbaf23b67cd599ec8c4d08348a0282ce08da94d1e0d63da61e1a17dd864ad"
            },
            "downloads": -1,
            "filename": "pubquiz-0.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "499ebf976aee78ac956e1c0a2777b864",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 5753985,
            "upload_time": "2024-01-15T21:23:02",
            "upload_time_iso_8601": "2024-01-15T21:23:02.119228Z",
            "url": "https://files.pythonhosted.org/packages/bc/c2/ff2eeb51e531fe84b6e6b459f54e5c400b8d1ba76487486bdd15af35cbe5/pubquiz-0.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9cd7f69e2d6d426adffb95cebfa3e9c3ed307a4c0cddd75106951b8e42bff9d1",
                "md5": "434d75fb20dffb7176fe46f56ce99a44",
                "sha256": "ef810ebda7f035b721aea87e0631b940593287d5344f6aec84ec79a2d03a299a"
            },
            "downloads": -1,
            "filename": "pubquiz-0.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "434d75fb20dffb7176fe46f56ce99a44",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 5757936,
            "upload_time": "2024-01-15T21:23:06",
            "upload_time_iso_8601": "2024-01-15T21:23:06.158143Z",
            "url": "https://files.pythonhosted.org/packages/9c/d7/f69e2d6d426adffb95cebfa3e9c3ed307a4c0cddd75106951b8e42bff9d1/pubquiz-0.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-15 21:23:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "elinscott",
    "github_project": "pubquiz",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "pubquiz"
}
        
Elapsed time: 0.16839s