lastpassreportingcli


Namelastpassreportingcli JSON
Version 0.3.3 PyPI version JSON
download
home_pagehttps://github.com/schubergphilis/lastpassreportingcli
SummaryA tool to report on state of secret rotation based on a cutoff day, by default the incident of lastpass day.
upload_time2023-06-08 08:30:47
maintainer
docs_urlNone
authorCostas Tyfoxylos
requires_python
licenseMIT
keywords lastpassreportingcli lastpass lastpasslib cutoff incident
VCS
bugtrack_url
requirements coloredlogs lastpasslib yaspin terminaltables prompt-toolkit colorclass
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ====================
lastpassreportingcli
====================

A tool to report on state of secret rotation based on a cutoff day, by default the incident of lastpass day.


* Documentation: https://lastpassreportingcli.readthedocs.org/en/latest


Development Workflow
====================

The workflow supports the following steps

 * lint
 * test
 * build
 * document
 * upload
 * graph

These actions are supported out of the box by the corresponding scripts under _CI/scripts directory with sane defaults based on best practices.
Sourcing setup_aliases.ps1 for windows powershell or setup_aliases.sh in bash on Mac or Linux will provide with handy aliases for the shell of all those commands prepended with an underscore.

The bootstrap script creates a .venv directory inside the project directory hosting the virtual environment. It uses pipenv for that.
It is called by all other scripts before they do anything. So one could simple start by calling _lint and that would set up everything before it tried to actually lint the project

Once the code is ready to be delivered the _tag script should be called accepting one of three arguments, patch, minor, major following the semantic versioning scheme.
So for the initial delivery one would call

    $ _tag --minor

which would bump the version of the project to 0.1.0 tag it in git and do a push and also ask for the change and automagically update HISTORY.rst with the version and the change provided.


So the full workflow after git is initialized is:

 * repeat as necessary (of course it could be test - code - lint :) )

   * code
   * lint
   * test
 * commit and push
 * develop more through the code-lint-test cycle
 * tag (with the appropriate argument)
 * build
 * upload (if you want to host your package in pypi)
 * document (of course this could be run at any point)


Important Information
=====================

This template is based on pipenv. In order to be compatible with requirements.txt so the actual created package can be used by any part of the existing python ecosystem some hacks were needed.
So when building a package out of this **do not** simple call

    $ python setup.py sdist bdist_egg

**as this will produce an unusable artifact with files missing.**
Instead use the provided build and upload scripts that create all the necessary files in the artifact.



Project Features
================

* TODO




History
-------

0.0.1 (10-03-2023)
---------------------

* First code creation


0.1.0 (24-03-2023)
------------------

* Initial official release.


0.2.0 (31-03-2023)
------------------

* Add secret type on the export report.


0.3.0 (31-03-2023)
------------------

* Implement whitelisting of secrets argument.


0.3.1 (31-03-2023)
------------------

* Remove debugging statement.


0.3.2 (31-03-2023)
------------------

* Simplify secret disregarding.


0.3.3 (08-06-2023)
------------------

* Bump dependecies for yubikey support.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/schubergphilis/lastpassreportingcli",
    "name": "lastpassreportingcli",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "lastpassreportingcli lastpass lastpasslib cutoff incident",
    "author": "Costas Tyfoxylos",
    "author_email": "ctyfoxylos@schubergphilis.com",
    "download_url": "https://files.pythonhosted.org/packages/53/30/5eddc4f11329f4db09dbd4a5e9c2a31b0e3b1e9e1a502fd9ba6030faf4ad/lastpassreportingcli-0.3.3.tar.gz",
    "platform": null,
    "description": "====================\nlastpassreportingcli\n====================\n\nA tool to report on state of secret rotation based on a cutoff day, by default the incident of lastpass day.\n\n\n* Documentation: https://lastpassreportingcli.readthedocs.org/en/latest\n\n\nDevelopment Workflow\n====================\n\nThe workflow supports the following steps\n\n * lint\n * test\n * build\n * document\n * upload\n * graph\n\nThese actions are supported out of the box by the corresponding scripts under _CI/scripts directory with sane defaults based on best practices.\nSourcing setup_aliases.ps1 for windows powershell or setup_aliases.sh in bash on Mac or Linux will provide with handy aliases for the shell of all those commands prepended with an underscore.\n\nThe bootstrap script creates a .venv directory inside the project directory hosting the virtual environment. It uses pipenv for that.\nIt is called by all other scripts before they do anything. So one could simple start by calling _lint and that would set up everything before it tried to actually lint the project\n\nOnce the code is ready to be delivered the _tag script should be called accepting one of three arguments, patch, minor, major following the semantic versioning scheme.\nSo for the initial delivery one would call\n\n    $ _tag --minor\n\nwhich would bump the version of the project to 0.1.0 tag it in git and do a push and also ask for the change and automagically update HISTORY.rst with the version and the change provided.\n\n\nSo the full workflow after git is initialized is:\n\n * repeat as necessary (of course it could be test - code - lint :) )\n\n   * code\n   * lint\n   * test\n * commit and push\n * develop more through the code-lint-test cycle\n * tag (with the appropriate argument)\n * build\n * upload (if you want to host your package in pypi)\n * document (of course this could be run at any point)\n\n\nImportant Information\n=====================\n\nThis template is based on pipenv. In order to be compatible with requirements.txt so the actual created package can be used by any part of the existing python ecosystem some hacks were needed.\nSo when building a package out of this **do not** simple call\n\n    $ python setup.py sdist bdist_egg\n\n**as this will produce an unusable artifact with files missing.**\nInstead use the provided build and upload scripts that create all the necessary files in the artifact.\n\n\n\nProject Features\n================\n\n* TODO\n\n\n\n\nHistory\n-------\n\n0.0.1 (10-03-2023)\n---------------------\n\n* First code creation\n\n\n0.1.0 (24-03-2023)\n------------------\n\n* Initial official release.\n\n\n0.2.0 (31-03-2023)\n------------------\n\n* Add secret type on the export report.\n\n\n0.3.0 (31-03-2023)\n------------------\n\n* Implement whitelisting of secrets argument.\n\n\n0.3.1 (31-03-2023)\n------------------\n\n* Remove debugging statement.\n\n\n0.3.2 (31-03-2023)\n------------------\n\n* Simplify secret disregarding.\n\n\n0.3.3 (08-06-2023)\n------------------\n\n* Bump dependecies for yubikey support.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A tool to report on state of secret rotation based on a cutoff day, by default the incident of lastpass day.",
    "version": "0.3.3",
    "project_urls": {
        "Homepage": "https://github.com/schubergphilis/lastpassreportingcli"
    },
    "split_keywords": [
        "lastpassreportingcli",
        "lastpass",
        "lastpasslib",
        "cutoff",
        "incident"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1ca301aca56e20b08f8766c5ed8bcef9c1457688ba0f07cf12d069331fa4b31",
                "md5": "038901aa0846fc55a45f11ef8c4baded",
                "sha256": "94158dba1eed1482b537906321fa23d4abae452c9bb9c54b4468e285b6d8536d"
            },
            "downloads": -1,
            "filename": "lastpassreportingcli-0.3.3-py3.9.egg",
            "has_sig": false,
            "md5_digest": "038901aa0846fc55a45f11ef8c4baded",
            "packagetype": "bdist_egg",
            "python_version": "0.3.3",
            "requires_python": null,
            "size": 54731,
            "upload_time": "2023-06-08T08:30:49",
            "upload_time_iso_8601": "2023-06-08T08:30:49.109197Z",
            "url": "https://files.pythonhosted.org/packages/a1/ca/301aca56e20b08f8766c5ed8bcef9c1457688ba0f07cf12d069331fa4b31/lastpassreportingcli-0.3.3-py3.9.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53305eddc4f11329f4db09dbd4a5e9c2a31b0e3b1e9e1a502fd9ba6030faf4ad",
                "md5": "a616df0aa5af98ec46708016f21b5baf",
                "sha256": "dc3115f33c660991f5a25883bbcf149c38eb48809888d679e62870c398eb7c8c"
            },
            "downloads": -1,
            "filename": "lastpassreportingcli-0.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "a616df0aa5af98ec46708016f21b5baf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 88803,
            "upload_time": "2023-06-08T08:30:47",
            "upload_time_iso_8601": "2023-06-08T08:30:47.721259Z",
            "url": "https://files.pythonhosted.org/packages/53/30/5eddc4f11329f4db09dbd4a5e9c2a31b0e3b1e9e1a502fd9ba6030faf4ad/lastpassreportingcli-0.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-08 08:30:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "schubergphilis",
    "github_project": "lastpassreportingcli",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "coloredlogs",
            "specs": [
                [
                    ">=",
                    "15.0.1"
                ]
            ]
        },
        {
            "name": "lastpasslib",
            "specs": [
                [
                    ">=",
                    "0.8.0"
                ]
            ]
        },
        {
            "name": "yaspin",
            "specs": [
                [
                    ">=",
                    "2.3.0"
                ]
            ]
        },
        {
            "name": "terminaltables",
            "specs": [
                [
                    ">=",
                    "3.1.10"
                ]
            ]
        },
        {
            "name": "prompt-toolkit",
            "specs": [
                [
                    ">=",
                    "3.0.38"
                ]
            ]
        },
        {
            "name": "colorclass",
            "specs": [
                [
                    ">=",
                    "2.2.2"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "lastpassreportingcli"
}
        
Elapsed time: 0.08121s