openpaygo-token


Nameopenpaygo-token JSON
Version 2.3.1 PyPI version JSON
download
home_pagehttps://github.com/EnAccess/OpenPAYGO-Token
SummaryOpenPAYGO-Token
upload_time2023-10-12 10:39:18
maintainer
docs_urlNone
author
requires_python>=2.7
licenseApache-2.0 license
keywords paygo
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <a href="https://github.com/EnAccess/OpenPAYGO-Token">
    <img
      src="https://enaccess.org/wp-content/uploads/2023/04/Open-PAYGO-Graphic-GitHub-2240-%C3%97-800-.svg"
      alt="OpenPAYGO Token"
      width="640"
    >
  </a>
</p>
<p align="center">
    <em>The OpenPAYGO Token is an open source token system to enable PAYGO functionality in new products.</em>
</p>
<p align="center">
  <img
    alt="Project Status"
    src="https://img.shields.io/badge/Project%20Status-stable-green"
  >
  <img
    alt="GitHub Workflow Status"
    src="https://img.shields.io/github/actions/workflow/status/EnAccess/OpenPAYGO-Token/openpaygo-token.yaml"
  >
  <a href="https://github.com/EnAccess/OpenPAYGO-Token/blob/main/LICENSE" target="_blank">
    <img
      alt="License"
      src="https://img.shields.io/github/license/EnAccess/OpenPAYGO-Token"
    >
  </a>
</p>

---

# OpenPAYGO Token v2

This project is supported by the EnAccess Foundation (https://enaccess.org/)

Hardware implementation with generic C version + Arduino + schematics: https://github.com/EnAccess/OpenPAYGO-HW

## INSTALLATION

1. Run ```pip install openpaygo-token```
2. That's it, you're ready to go. Check the test scenarios to see how to use the libraries to generate and check tokens.


## GETTING STARTED

1. Have a look at the general documentation: https://github.com/EnAccess/OpenPAYGO/blob/master/documentation/general_documentation.pdf

2. The source code of the example implementation into a device (including an example for begginers implemented on Arduino): https://github.com/EnAccess/OpenPAYGO-HW

3. The guide for the example, including a quick test to see if you have implemented the code properly into your system: https://github.com/EnAccess/OpenPAYGO/blob/master/documentation/example_implementation_documentation.pdf


## CHANGELOG

2022-09-05: v2.2.0 release
- Packaged into a PIP package (thanks to the work of @wan5xp)
- Folder structure cleanup
- Tests improvements

2021-06-24: v2.1.5 release
- Added padding of tokens with 0 directly to the generator
- Modified tests to work with recommended settings for unordered token entry

2021-05-04: v2.1.4 release
- Added tool to automatically generate spreadsheets with tokens for the test procedure
- Clarify ambiguity about the re-enabling of PAYG
- Ensured the example implementations used the recommended values
- Added full test procedure for the device simulator
- Clarified UI to differentiate between invalid and already used

2020-10-23: v2.1.1 release
- Added tool to generate CSV files with device data; the data can then be used for factory setup and software setup
- Added a tool to flash device data onto devices in factory (from the CSV file); it is compatible with the Arduino examples of the hardware repository

2019-11-15: v2.1.0 release
- Added documentation about how to allow entry of slightly older tokens on device (unordered token entry)
- Added an example of unordered token entry (with test scenario) on the Python implementation
- Ensured compatibility of the Python code with Python v2.7+ (in addition to Python 3+ already supported).

**Note:** This version is fully retro-compatible with the v2.0, the tokens themselves do not change. Changes can be implemented on devices that wish to support unordered token entry but are not required. No change is required on servers.

2019-10-10: v2.0.0 release
- Improved the test suite
- Added an extra example in the implementation documentation
- Bugfix in the example server implementation leading to count not always being updated correctly
- Bugfix in the update of count in the python device simulator

2019-09-27:
- Added signed independent security audit
- Added documentation as PDF

2019-09-06: v2.0 rc1
- Added extended token example implementation

2019-08-28: v2.0 beta
- Fully functional version with all v2.0 features

2019-07-19: v2.0 alpha
- First functional pre-release version

**Note:** The v1.0 version was only provided to a few partners for a limited beta test and to gather feedback useful to make the v2.0, it is not published here, is not compatible with the v2.0 and should not be used in production.


## PUBLISHING

(For internal use of Solaris Offgrid)
To publish run:
1. ```python setup.py sdist```
2. ```twine upload dist/*```



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/EnAccess/OpenPAYGO-Token",
    "name": "openpaygo-token",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=2.7",
    "maintainer_email": "",
    "keywords": "paygo",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/93/29/1c787883eceeaa2bb2b7543c326e0f66e07cdd041b7f3f6321a104ad6683/openpaygo-token-2.3.1.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <a href=\"https://github.com/EnAccess/OpenPAYGO-Token\">\n    <img\n      src=\"https://enaccess.org/wp-content/uploads/2023/04/Open-PAYGO-Graphic-GitHub-2240-%C3%97-800-.svg\"\n      alt=\"OpenPAYGO Token\"\n      width=\"640\"\n    >\n  </a>\n</p>\n<p align=\"center\">\n    <em>The OpenPAYGO Token is an open source token system to enable PAYGO functionality in new products.</em>\n</p>\n<p align=\"center\">\n  <img\n    alt=\"Project Status\"\n    src=\"https://img.shields.io/badge/Project%20Status-stable-green\"\n  >\n  <img\n    alt=\"GitHub Workflow Status\"\n    src=\"https://img.shields.io/github/actions/workflow/status/EnAccess/OpenPAYGO-Token/openpaygo-token.yaml\"\n  >\n  <a href=\"https://github.com/EnAccess/OpenPAYGO-Token/blob/main/LICENSE\" target=\"_blank\">\n    <img\n      alt=\"License\"\n      src=\"https://img.shields.io/github/license/EnAccess/OpenPAYGO-Token\"\n    >\n  </a>\n</p>\n\n---\n\n# OpenPAYGO Token v2\n\nThis project is supported by the EnAccess Foundation (https://enaccess.org/)\n\nHardware implementation with generic C version + Arduino + schematics: https://github.com/EnAccess/OpenPAYGO-HW\n\n## INSTALLATION\n\n1. Run ```pip install openpaygo-token```\n2. That's it, you're ready to go. Check the test scenarios to see how to use the libraries to generate and check tokens.\n\n\n## GETTING STARTED\n\n1. Have a look at the general documentation: https://github.com/EnAccess/OpenPAYGO/blob/master/documentation/general_documentation.pdf\n\n2. The source code of the example implementation into a device (including an example for begginers implemented on Arduino): https://github.com/EnAccess/OpenPAYGO-HW\n\n3. The guide for the example, including a quick test to see if you have implemented the code properly into your system: https://github.com/EnAccess/OpenPAYGO/blob/master/documentation/example_implementation_documentation.pdf\n\n\n## CHANGELOG\n\n2022-09-05: v2.2.0 release\n- Packaged into a PIP package (thanks to the work of @wan5xp)\n- Folder structure cleanup\n- Tests improvements\n\n2021-06-24: v2.1.5 release\n- Added padding of tokens with 0 directly to the generator\n- Modified tests to work with recommended settings for unordered token entry\n\n2021-05-04: v2.1.4 release\n- Added tool to automatically generate spreadsheets with tokens for the test procedure\n- Clarify ambiguity about the re-enabling of PAYG\n- Ensured the example implementations used the recommended values\n- Added full test procedure for the device simulator\n- Clarified UI to differentiate between invalid and already used\n\n2020-10-23: v2.1.1 release\n- Added tool to generate CSV files with device data; the data can then be used for factory setup and software setup\n- Added a tool to flash device data onto devices in factory (from the CSV file); it is compatible with the Arduino examples of the hardware repository\n\n2019-11-15: v2.1.0 release\n- Added documentation about how to allow entry of slightly older tokens on device (unordered token entry)\n- Added an example of unordered token entry (with test scenario) on the Python implementation\n- Ensured compatibility of the Python code with Python v2.7+ (in addition to Python 3+ already supported).\n\n**Note:** This version is fully retro-compatible with the v2.0, the tokens themselves do not change. Changes can be implemented on devices that wish to support unordered token entry but are not required. No change is required on servers.\n\n2019-10-10: v2.0.0 release\n- Improved the test suite\n- Added an extra example in the implementation documentation\n- Bugfix in the example server implementation leading to count not always being updated correctly\n- Bugfix in the update of count in the python device simulator\n\n2019-09-27:\n- Added signed independent security audit\n- Added documentation as PDF\n\n2019-09-06: v2.0 rc1\n- Added extended token example implementation\n\n2019-08-28: v2.0 beta\n- Fully functional version with all v2.0 features\n\n2019-07-19: v2.0 alpha\n- First functional pre-release version\n\n**Note:** The v1.0 version was only provided to a few partners for a limited beta test and to gather feedback useful to make the v2.0, it is not published here, is not compatible with the v2.0 and should not be used in production.\n\n\n## PUBLISHING\n\n(For internal use of Solaris Offgrid)\nTo publish run:\n1. ```python setup.py sdist```\n2. ```twine upload dist/*```\n\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0 license",
    "summary": "OpenPAYGO-Token",
    "version": "2.3.1",
    "project_urls": {
        "Changes": "https://github.com/EnAccess/OpenPAYGO-Token/releases",
        "Chat": "https://community.enaccess.org/",
        "Homepage": "https://enaccess.org/materials/openpaygotoken/",
        "Issue Tracker": "https://github.com/EnAccess/OpenPAYGO-Token/issues",
        "Source": "https://github.com/EnAccess/OpenPAYGO-Token",
        "Twitter": "https://twitter.com/EnAccessFdn"
    },
    "split_keywords": [
        "paygo"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93291c787883eceeaa2bb2b7543c326e0f66e07cdd041b7f3f6321a104ad6683",
                "md5": "9652516b010a617ddee454bb014c6487",
                "sha256": "ffad0d5297539a32db5dc6e035f7fe56d9553595661c13ec23bf3491cafa54a2"
            },
            "downloads": -1,
            "filename": "openpaygo-token-2.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "9652516b010a617ddee454bb014c6487",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=2.7",
            "size": 17835,
            "upload_time": "2023-10-12T10:39:18",
            "upload_time_iso_8601": "2023-10-12T10:39:18.704095Z",
            "url": "https://files.pythonhosted.org/packages/93/29/1c787883eceeaa2bb2b7543c326e0f66e07cdd041b7f3f6321a104ad6683/openpaygo-token-2.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-12 10:39:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "EnAccess",
    "github_project": "OpenPAYGO-Token",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "openpaygo-token"
}
        
Elapsed time: 0.17213s