pretix-cwa


Namepretix-cwa JSON
Version 1.1.2 PyPI version JSON
download
home_page
Summarypretix integration for the Corona Warn App (CWA)
upload_time2023-05-28 23:08:31
maintainer
docs_urlNone
author
requires_python>=3.9
license Copyright 2021 pretix team Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
keywords pretix
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            CWA integration
===============

This is a plugin for `pretix`_. It integrates pretix with the German Corona Warn App (CWA) by making it easy for event
organizers to generate event QR codes while at the same time making it really easy for attendees to use them and remind
them of using it.

It currently supports the following features:

* Generate a QR code that can be used to check in to the event using the CWA. The QR code can be displayed as a
  self-refreshing website, printed to paper, or embedded into a digital signage system as a PNG or SVG image.

* Automatically send a link that allows to check-in using the CWA as soon as the attendee arrived. This is sent via email
  immediately after the event ticket has been scanned at the entrance. This way, people are actively reminded of doing
  the check-in (even if they do it only afterwards), but the link is only shared with people who actually show up.

We decided against printing the CWA qr code on tickets since the `CWA FAQ`_
recommend to not make it available for people not physically present to avoid misuse.

The configuration of the plugin allows to control whether a new QR codes is generated with every time slot, or just once
per day.

It is built based on `MaZderMind's implementation`_ of the `CWA event registration spec`_.

Development setup
-----------------

1. Make sure that you have a working `pretix development setup`_.

2. Clone this repository.

3. Activate the virtual environment you use for pretix development.

4. Execute ``pip install -e .`` within this directory to register this application with pretix's plugin registry.

5. Execute ``make`` within this directory to compile translations.

6. Restart your local pretix server. You can now use the plugin from this repository for your events by enabling it in
   the 'plugins' tab in the settings.

This plugin has CI set up to enforce a few code style rules. To check locally, you need these packages installed::

    pip install flake8 isort black docformatter

To check your plugin for rule violations, run::

    docformatter --check -r .
    black --check .
    isort -c .
    flake8 .

You can auto-fix some of these issues by running::

    docformatter -r .
    isort .
    black .

To automatically check for these issues before you commit, you can run ``.install-hooks``.

License
-------

Copyright 2021 pretix team

Released under the terms of the Apache License 2.0


.. _pretix: https://github.com/pretix/pretix
.. _pretix development setup: https://docs.pretix.eu/en/latest/development/setup.html
.. _CWA FAQ: https://www.coronawarn.app/de/faq/#check_in_misuse
.. _MaZderMind's implementation: https://github.com/MaZderMind/cwa-qr
.. _CWA event registration spec: https://github.com/corona-warn-app/cwa-documentation/blob/c0e2829/event_registration.md

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pretix-cwa",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "pretix team <support@pretix.eu>",
    "keywords": "pretix",
    "author": "",
    "author_email": "pretix team <support@pretix.eu>",
    "download_url": "https://files.pythonhosted.org/packages/e6/84/4df64484b2a8719b254a868aa34a52e726f9d58e60e70d3cedf7b4d434aa/pretix-cwa-1.1.2.tar.gz",
    "platform": null,
    "description": "CWA integration\n===============\n\nThis is a plugin for `pretix`_. It integrates pretix with the German Corona Warn App (CWA) by making it easy for event\norganizers to generate event QR codes while at the same time making it really easy for attendees to use them and remind\nthem of using it.\n\nIt currently supports the following features:\n\n* Generate a QR code that can be used to check in to the event using the CWA. The QR code can be displayed as a\n  self-refreshing website, printed to paper, or embedded into a digital signage system as a PNG or SVG image.\n\n* Automatically send a link that allows to check-in using the CWA as soon as the attendee arrived. This is sent via email\n  immediately after the event ticket has been scanned at the entrance. This way, people are actively reminded of doing\n  the check-in (even if they do it only afterwards), but the link is only shared with people who actually show up.\n\nWe decided against printing the CWA qr code on tickets since the `CWA FAQ`_\nrecommend to not make it available for people not physically present to avoid misuse.\n\nThe configuration of the plugin allows to control whether a new QR codes is generated with every time slot, or just once\nper day.\n\nIt is built based on `MaZderMind's implementation`_ of the `CWA event registration spec`_.\n\nDevelopment setup\n-----------------\n\n1. Make sure that you have a working `pretix development setup`_.\n\n2. Clone this repository.\n\n3. Activate the virtual environment you use for pretix development.\n\n4. Execute ``pip install -e .`` within this directory to register this application with pretix's plugin registry.\n\n5. Execute ``make`` within this directory to compile translations.\n\n6. Restart your local pretix server. You can now use the plugin from this repository for your events by enabling it in\n   the 'plugins' tab in the settings.\n\nThis plugin has CI set up to enforce a few code style rules. To check locally, you need these packages installed::\n\n    pip install flake8 isort black docformatter\n\nTo check your plugin for rule violations, run::\n\n    docformatter --check -r .\n    black --check .\n    isort -c .\n    flake8 .\n\nYou can auto-fix some of these issues by running::\n\n    docformatter -r .\n    isort .\n    black .\n\nTo automatically check for these issues before you commit, you can run ``.install-hooks``.\n\nLicense\n-------\n\nCopyright 2021 pretix team\n\nReleased under the terms of the Apache License 2.0\n\n\n.. _pretix: https://github.com/pretix/pretix\n.. _pretix development setup: https://docs.pretix.eu/en/latest/development/setup.html\n.. _CWA FAQ: https://www.coronawarn.app/de/faq/#check_in_misuse\n.. _MaZderMind's implementation: https://github.com/MaZderMind/cwa-qr\n.. _CWA event registration spec: https://github.com/corona-warn-app/cwa-documentation/blob/c0e2829/event_registration.md\n",
    "bugtrack_url": null,
    "license": " Copyright 2021 pretix team  Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.  ",
    "summary": "pretix integration for the Corona Warn App (CWA)",
    "version": "1.1.2",
    "project_urls": {
        "homepage": "https://github.com/pretix/pretix-cwa"
    },
    "split_keywords": [
        "pretix"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdaaf611ecf3483df886cde5e15fd2037cf7f4ed3452d908421b33b97e8b0533",
                "md5": "a529ad8e534029f245bea2a434d4c059",
                "sha256": "1e6c871f2e680dc9fa554f8fdce351c4e828f69084184115ed62662e14f1c0d6"
            },
            "downloads": -1,
            "filename": "pretix_cwa-1.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a529ad8e534029f245bea2a434d4c059",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 30465,
            "upload_time": "2023-05-28T23:08:29",
            "upload_time_iso_8601": "2023-05-28T23:08:29.269007Z",
            "url": "https://files.pythonhosted.org/packages/bd/aa/f611ecf3483df886cde5e15fd2037cf7f4ed3452d908421b33b97e8b0533/pretix_cwa-1.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6844df64484b2a8719b254a868aa34a52e726f9d58e60e70d3cedf7b4d434aa",
                "md5": "8aa7aab92f186dcde01d190d4ddf95f0",
                "sha256": "ec30498c576b5b4ea0506fde548ef4f473199b58b839194f2622bab99958314c"
            },
            "downloads": -1,
            "filename": "pretix-cwa-1.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "8aa7aab92f186dcde01d190d4ddf95f0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 19747,
            "upload_time": "2023-05-28T23:08:31",
            "upload_time_iso_8601": "2023-05-28T23:08:31.396461Z",
            "url": "https://files.pythonhosted.org/packages/e6/84/4df64484b2a8719b254a868aa34a52e726f9d58e60e70d3cedf7b4d434aa/pretix-cwa-1.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-28 23:08:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pretix",
    "github_project": "pretix-cwa",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pretix-cwa"
}
        
Elapsed time: 0.07058s