gdpr


Namegdpr JSON
Version 1.0.0 PyPI version JSON
download
home_page
SummaryTutorial project 'Publish to PyPI, and let's see how the *Python Software Foundation* interprets consent GDPR-wise'
upload_time2023-05-25 01:01:38
maintainer
docs_urlNone
author
requires_python>=3.7
licenseCopyright (c) 2016 The Python Packaging Authority (PyPA) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords sample gdpr pypi psf pip pii privacy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Publish to PyPI, and let's see how the *Python Software Foundation* interprets consent GDPR-wise

## Context
[*PyPI was subpoenaed*](https://blog.pypi.org/posts/2023-05-24-pypi-was-subpoenaed/), especially [*point 6*](https://blog.pypi.org/posts/2023-05-24-pypi-was-subpoenaed/#6-telephone-or-instrument-numbers-including-the-registration-internet-protocol-address):

> A synopsis of all IP Addresses for each username from previous records were shared. These were sourced from our database records and are private to PyPI.

* [*Hacker News* discussion about this](https://news.ycombinator.com/item?id=36061407)
* [*Who does the data protection law apply to?*](https://commission.europa.eu/law/law-topic/data-protection/reform/rules-business-and-organisations/application-regulation/who-does-data-protection-law-apply_en)
* [*Does the GDPR apply to companies outside of the EU?*](https://gdpr.eu/companies-outside-of-europe/)
* [*When do the GDPR provisions apply to non-EU businesses?*](https://www.activemind.legal/guides/gdpr-non-eu-businesses/)

## Steps to reproduce
* Be in the European Union. No citizenship required.
* Create an account at https://pypi.org/account/register/ ([*archive.is* English localization memento from 24 May 2023 20:25:43 UTC](https://archive.is/CdDOa)). Notice that you don't have to provide any explicit consent to any terms and conditions.
* Confirm verification e-mail. Notice it just contains a confirmation link, e.g. `https://pypi.org/account/verify-email/?token=eyJhY3Rpb24iOiJlbWFpbC12ZXJpZnkiLCJlbWFpbC5pZCI6IjEyMzQ1IiwiYWxnIjoiSFMyNTYifQ.YWJjZA.bB3cVvD2EnTZ7sOD7XNPnxv0xgl9Q3svmcDCG8UTR9Q`.
  * The *token* parameter value is an unencrypted, *HMACSHA256*-signed *JSON Web Token*, in this example it provides the following information (try it out at https://jwt.io/):
```
// header
{
  "action": "email-verify",
  "email.id": "12345",
  "alg": "HS256"
}

// payload
"abcd"
```
* Visit the [*Python Packaging Authority*'s (PyPA) *pypa/sampleproject* GitHub project page](https://github.com/pypa/sampleproject).
* Select *Use this template* and create your own fork, e.g. [*Abdull/gdpr*](https://github.com/Abdull/gdpr).
* Adapt repository files, in particular *pyproject.toml* and *README.md*.
* Build:
```
# see https://packaging.python.org/en/latest/flow/
# see https://packaging.python.org/en/latest/tutorials/installing-packages/
# see https://packaging.python.org/en/latest/tutorials/packaging-projects/

# assuming Debian 11 bullseye in the following

# get ensurepip, Debian apt-way:
sudo apt install python3-venv

pip install --upgrade pip setuptools wheel build

# inside your project
python3 -m build

# on success, shall end with line
# Successfully built gdpr-1.0.0.tar.gz and gdpr-1.0.0-py3-none-any.whl

```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "gdpr",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "sample,gdpr,pypi,psf,pip,pii,privacy",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/ee/d6/ba672bcb6dce55bebb920932eab2ed5e256eb2d11ecdb54f828667e3ced8/gdpr-1.0.0.tar.gz",
    "platform": null,
    "description": "# Publish to PyPI, and let's see how the *Python Software Foundation* interprets consent GDPR-wise\n\n## Context\n[*PyPI was subpoenaed*](https://blog.pypi.org/posts/2023-05-24-pypi-was-subpoenaed/), especially [*point 6*](https://blog.pypi.org/posts/2023-05-24-pypi-was-subpoenaed/#6-telephone-or-instrument-numbers-including-the-registration-internet-protocol-address):\n\n> A synopsis of all IP Addresses for each username from previous records were shared. These were sourced from our database records and are private to PyPI.\n\n* [*Hacker News* discussion about this](https://news.ycombinator.com/item?id=36061407)\n* [*Who does the data protection law apply to?*](https://commission.europa.eu/law/law-topic/data-protection/reform/rules-business-and-organisations/application-regulation/who-does-data-protection-law-apply_en)\n* [*Does the GDPR apply to companies outside of the EU?*](https://gdpr.eu/companies-outside-of-europe/)\n* [*When do the GDPR provisions apply to non-EU businesses?*](https://www.activemind.legal/guides/gdpr-non-eu-businesses/)\n\n## Steps to reproduce\n* Be in the European Union. No citizenship required.\n* Create an account at https://pypi.org/account/register/ ([*archive.is* English localization memento from 24 May 2023 20:25:43 UTC](https://archive.is/CdDOa)). Notice that you don't have to provide any explicit consent to any terms and conditions.\n* Confirm verification e-mail. Notice it just contains a confirmation link, e.g. `https://pypi.org/account/verify-email/?token=eyJhY3Rpb24iOiJlbWFpbC12ZXJpZnkiLCJlbWFpbC5pZCI6IjEyMzQ1IiwiYWxnIjoiSFMyNTYifQ.YWJjZA.bB3cVvD2EnTZ7sOD7XNPnxv0xgl9Q3svmcDCG8UTR9Q`.\n  * The *token* parameter value is an unencrypted, *HMACSHA256*-signed *JSON Web Token*, in this example it provides the following information (try it out at https://jwt.io/):\n```\n// header\n{\n  \"action\": \"email-verify\",\n  \"email.id\": \"12345\",\n  \"alg\": \"HS256\"\n}\n\n// payload\n\"abcd\"\n```\n* Visit the [*Python Packaging Authority*'s (PyPA) *pypa/sampleproject* GitHub project page](https://github.com/pypa/sampleproject).\n* Select *Use this template* and create your own fork, e.g. [*Abdull/gdpr*](https://github.com/Abdull/gdpr).\n* Adapt repository files, in particular *pyproject.toml* and *README.md*.\n* Build:\n```\n# see https://packaging.python.org/en/latest/flow/\n# see https://packaging.python.org/en/latest/tutorials/installing-packages/\n# see https://packaging.python.org/en/latest/tutorials/packaging-projects/\n\n# assuming Debian 11 bullseye in the following\n\n# get ensurepip, Debian apt-way:\nsudo apt install python3-venv\n\npip install --upgrade pip setuptools wheel build\n\n# inside your project\npython3 -m build\n\n# on success, shall end with line\n# Successfully built gdpr-1.0.0.tar.gz and gdpr-1.0.0-py3-none-any.whl\n\n```\n",
    "bugtrack_url": null,
    "license": "Copyright (c) 2016 The Python Packaging Authority (PyPA)  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Tutorial project 'Publish to PyPI, and let's see how the *Python Software Foundation* interprets consent GDPR-wise'",
    "version": "1.0.0",
    "project_urls": {
        "Bug Reports": "https://github.com/Abdull/gdpr/issues",
        "Homepage": "https://github.com/Abdull/gdpr",
        "Source": "https://github.com/Abdull/gdpr"
    },
    "split_keywords": [
        "sample",
        "gdpr",
        "pypi",
        "psf",
        "pip",
        "pii",
        "privacy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37fd29b4aaeeb4bba6d180c7185293909128988f825652f14207f5b43d12711e",
                "md5": "46e35949a49f3469cc0a35432c5d61bd",
                "sha256": "c6856b144c0fdf5eb90aa918b7775adf8effb7421eb91d496ac8d6e4287e4f77"
            },
            "downloads": -1,
            "filename": "gdpr-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "46e35949a49f3469cc0a35432c5d61bd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 5023,
            "upload_time": "2023-05-25T01:01:36",
            "upload_time_iso_8601": "2023-05-25T01:01:36.991067Z",
            "url": "https://files.pythonhosted.org/packages/37/fd/29b4aaeeb4bba6d180c7185293909128988f825652f14207f5b43d12711e/gdpr-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eed6ba672bcb6dce55bebb920932eab2ed5e256eb2d11ecdb54f828667e3ced8",
                "md5": "adfd372f6694d3f2ad100daf74216d30",
                "sha256": "c367eed1827f8a2cf25eea22f12edd5c1ebef291788bccaf7e4b1e483f2df529"
            },
            "downloads": -1,
            "filename": "gdpr-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "adfd372f6694d3f2ad100daf74216d30",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 5685,
            "upload_time": "2023-05-25T01:01:38",
            "upload_time_iso_8601": "2023-05-25T01:01:38.713906Z",
            "url": "https://files.pythonhosted.org/packages/ee/d6/ba672bcb6dce55bebb920932eab2ed5e256eb2d11ecdb54f828667e3ced8/gdpr-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-25 01:01:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Abdull",
    "github_project": "gdpr",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "gdpr"
}
        
Elapsed time: 0.08907s