pretix-passbook


Namepretix-passbook JSON
Version 1.13.1 PyPI version JSON
download
home_page
SummaryPassbook tickets for pretix
upload_time2023-11-28 17:11:42
maintainer
docs_urlNone
author
requires_python>=3.9
licenseCopyright 2016 Tobias 'rixx' Kunze and Raphael Michel 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
coveralls test coverage No coveralls.
            pretix-passbook
===============

.. image:: https://img.shields.io/pypi/v/pretix-passbook.svg
   :target: https://pypi.python.org/pypi/pretix-passbook

.. image:: https://travis-ci.org/pretix/pretix-passbook.svg?branch=master
   :target: https://travis-ci.org/pretix/pretix-passbook

This is a plugin for `pretix`_. It allows to provide tickets in the passbook format supported by Apple Wallet and a
number of Android apps.

Contributing
------------

If you like to contribute to this project, you are very welcome to do so. If you have any
questions in the process, please do not hesitate to ask us.

Please note that we have a `Code of Conduct`_ in place that applies to all project contributions, including issues,
pull requests, etc.

Development setup
^^^^^^^^^^^^^^^^^

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

2. Clone this repository, eg to ``local/pretix-passbook``.

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.


Generating Passbook keys and configuring them in pretix
-------------------------------------------------------

You can generate a key and CSR using::

    export CERT_NAME=pass-pretix
    openssl genrsa -out $CERT_NAME.key 2048
    openssl pkey -in $CERT_NAME.key -traditional > $CERT_NAME.key.pem
    openssl req -new -key $CERT_NAME.key -out $CERT_NAME.csr

You can then request a certificate using that CSR in your `Apple developer account`_. You can then convert the downloaded certificate like this::

    openssl x509 -inform der -in $CERT_NAME.cer -out $CERT_NAME.pem
    
After generating the .pem file, upload it to pretix as passbook certificate.
Make sure you have uploaded the key generated before (pass-pretix.key) and added the passbook CA of apple.
Next add your Team ID in pretix and the passbook type id. The passbook type id is your identifier, as example pass.pretix.example. The Team ID can be found under "Organizational Unit" when opening the passbook certificate, e.g. with Keychain on MacOS.  
If you have configured your private rsa key with a password you can provide it in pretix.

Click on Save.
Enjoy!

License
-------

Copyright 2016 Tobias 'rixx' Kunze and Raphael Michel

Released under the terms of the Apache License 2.0


.. _Apple developer account: https://developer.apple.com/account/ios/certificate/
.. _pretix: https://github.com/pretix/pretix
.. _Code of Conduct: https://docs.pretix.eu/en/latest/development/contribution/codeofconduct.html
.. _pretix development setup: https://docs.pretix.eu/en/latest/development/setup.html

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pretix-passbook",
    "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>, Tobias Kunze <rixx@cutebit.de>",
    "download_url": "https://files.pythonhosted.org/packages/a7/c2/c2595fe73b11be2bae6b0385215ab9ea4d9dfd83242b4a4cb10be956098c/pretix-passbook-1.13.1.tar.gz",
    "platform": null,
    "description": "pretix-passbook\n===============\n\n.. image:: https://img.shields.io/pypi/v/pretix-passbook.svg\n   :target: https://pypi.python.org/pypi/pretix-passbook\n\n.. image:: https://travis-ci.org/pretix/pretix-passbook.svg?branch=master\n   :target: https://travis-ci.org/pretix/pretix-passbook\n\nThis is a plugin for `pretix`_. It allows to provide tickets in the passbook format supported by Apple Wallet and a\nnumber of Android apps.\n\nContributing\n------------\n\nIf you like to contribute to this project, you are very welcome to do so. If you have any\nquestions in the process, please do not hesitate to ask us.\n\nPlease note that we have a `Code of Conduct`_ in place that applies to all project contributions, including issues,\npull requests, etc.\n\nDevelopment setup\n^^^^^^^^^^^^^^^^^\n\n1. Make sure that you have a working `pretix development setup`_.\n\n2. Clone this repository, eg to ``local/pretix-passbook``.\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\n\nGenerating Passbook keys and configuring them in pretix\n-------------------------------------------------------\n\nYou can generate a key and CSR using::\n\n    export CERT_NAME=pass-pretix\n    openssl genrsa -out $CERT_NAME.key 2048\n    openssl pkey -in $CERT_NAME.key -traditional > $CERT_NAME.key.pem\n    openssl req -new -key $CERT_NAME.key -out $CERT_NAME.csr\n\nYou can then request a certificate using that CSR in your `Apple developer account`_. You can then convert the downloaded certificate like this::\n\n    openssl x509 -inform der -in $CERT_NAME.cer -out $CERT_NAME.pem\n    \nAfter generating the .pem file, upload it to pretix as passbook certificate.\nMake sure you have uploaded the key generated before (pass-pretix.key) and added the passbook CA of apple.\nNext add your Team ID in pretix and the passbook type id. The passbook type id is your identifier, as example pass.pretix.example. The Team ID can be found under \"Organizational Unit\" when opening the passbook certificate, e.g. with Keychain on MacOS.  \nIf you have configured your private rsa key with a password you can provide it in pretix.\n\nClick on Save.\nEnjoy!\n\nLicense\n-------\n\nCopyright 2016 Tobias 'rixx' Kunze and Raphael Michel\n\nReleased under the terms of the Apache License 2.0\n\n\n.. _Apple developer account: https://developer.apple.com/account/ios/certificate/\n.. _pretix: https://github.com/pretix/pretix\n.. _Code of Conduct: https://docs.pretix.eu/en/latest/development/contribution/codeofconduct.html\n.. _pretix development setup: https://docs.pretix.eu/en/latest/development/setup.html\n",
    "bugtrack_url": null,
    "license": "Copyright 2016 Tobias 'rixx' Kunze and Raphael Michel  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": "Passbook tickets for pretix",
    "version": "1.13.1",
    "project_urls": {
        "homepage": "https://github.com/pretix/pretix-passbook"
    },
    "split_keywords": [
        "pretix"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92a3d628f816e6f29dd0073fcd716290b63df6a2e8f6a161195129ea270e7a3f",
                "md5": "bee754eff9c0da131d92ee957a4d6cb9",
                "sha256": "da3864d07d82f633655ce1aa612f22a09cba592dd6119f096df4e580735c30d1"
            },
            "downloads": -1,
            "filename": "pretix_passbook-1.13.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bee754eff9c0da131d92ee957a4d6cb9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 156502,
            "upload_time": "2023-11-28T17:11:39",
            "upload_time_iso_8601": "2023-11-28T17:11:39.694220Z",
            "url": "https://files.pythonhosted.org/packages/92/a3/d628f816e6f29dd0073fcd716290b63df6a2e8f6a161195129ea270e7a3f/pretix_passbook-1.13.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7c2c2595fe73b11be2bae6b0385215ab9ea4d9dfd83242b4a4cb10be956098c",
                "md5": "de13fac372f799381e7191641f8e2deb",
                "sha256": "ba6d8c881d9d61725bb9636c64dea0f08cec6fb0076b02cd7051cce34052ed71"
            },
            "downloads": -1,
            "filename": "pretix-passbook-1.13.1.tar.gz",
            "has_sig": false,
            "md5_digest": "de13fac372f799381e7191641f8e2deb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 36186,
            "upload_time": "2023-11-28T17:11:42",
            "upload_time_iso_8601": "2023-11-28T17:11:42.327479Z",
            "url": "https://files.pythonhosted.org/packages/a7/c2/c2595fe73b11be2bae6b0385215ab9ea4d9dfd83242b4a4cb10be956098c/pretix-passbook-1.13.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-28 17:11:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pretix",
    "github_project": "pretix-passbook",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pretix-passbook"
}
        
Elapsed time: 0.17594s