enpassreadercli


Nameenpassreadercli JSON
Version 0.4.2 PyPI version JSON
download
home_pagehttps://github.com/costastf/enpassreadercli
SummaryA cli to access enpass 6 encrypted databases and read, list and search values.
upload_time2023-08-10 14:22:43
maintainer
docs_urlNone
authorCostas Tyfoxylos
requires_python
licenseMIT
keywords enpassreadercli enpass
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===============
enpassreadercli
===============

A cli to access enpass 6 encrypted databases and read, list and search values.


* Documentation: https://enpassreadercli.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 (27-03-2021)
---------------------

* First code creation


0.1.0 (27-03-2021)
------------------

* Initial functionality.


0.1.1 (27-03-2021)
------------------

* Reverted to default styling for search function.


0.2.0 (27-03-2021)
------------------

* Added fuzzy searching capabilities.


0.2.1 (07-07-2021)
------------------

* Added pipeline and bumped dependencies.


0.3.0 (02-03-2023)
------------------

* Implement totp retrieval.


0.3.1 (02-03-2023)
------------------

* Calculate actual totp from provided seed and return that.


0.4.0 (10-08-2023)
------------------

* Implement support for pbkdf2-rounds setting as an argument.


0.4.1 (10-08-2023)
------------------

* Fix requirements on the pipeline for upload.


0.4.2 (10-08-2023)
------------------

* Improve error message where pbkdf2 round value could be wrong.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/costastf/enpassreadercli",
    "name": "enpassreadercli",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "enpassreadercli enpass",
    "author": "Costas Tyfoxylos",
    "author_email": "costas.tyf@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/69/fb/8307a614f16517ee95e68db69200a83a15df150afa5fc9b0a70a31180f49/enpassreadercli-0.4.2.tar.gz",
    "platform": null,
    "description": "===============\nenpassreadercli\n===============\n\nA cli to access enpass 6 encrypted databases and read, list and search values.\n\n\n* Documentation: https://enpassreadercli.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 (27-03-2021)\n---------------------\n\n* First code creation\n\n\n0.1.0 (27-03-2021)\n------------------\n\n* Initial functionality.\n\n\n0.1.1 (27-03-2021)\n------------------\n\n* Reverted to default styling for search function.\n\n\n0.2.0 (27-03-2021)\n------------------\n\n* Added fuzzy searching capabilities.\n\n\n0.2.1 (07-07-2021)\n------------------\n\n* Added pipeline and bumped dependencies.\n\n\n0.3.0 (02-03-2023)\n------------------\n\n* Implement totp retrieval.\n\n\n0.3.1 (02-03-2023)\n------------------\n\n* Calculate actual totp from provided seed and return that.\n\n\n0.4.0 (10-08-2023)\n------------------\n\n* Implement support for pbkdf2-rounds setting as an argument.\n\n\n0.4.1 (10-08-2023)\n------------------\n\n* Fix requirements on the pipeline for upload.\n\n\n0.4.2 (10-08-2023)\n------------------\n\n* Improve error message where pbkdf2 round value could be wrong.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A cli to access enpass 6 encrypted databases and read, list and search values.",
    "version": "0.4.2",
    "project_urls": {
        "Homepage": "https://github.com/costastf/enpassreadercli"
    },
    "split_keywords": [
        "enpassreadercli",
        "enpass"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69fb8307a614f16517ee95e68db69200a83a15df150afa5fc9b0a70a31180f49",
                "md5": "f05fa1d79f341536df88395f59eda123",
                "sha256": "aaa117f9be3f78110416a4227795ffed6a406d3cd17866ead5cf180943332878"
            },
            "downloads": -1,
            "filename": "enpassreadercli-0.4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "f05fa1d79f341536df88395f59eda123",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 82355,
            "upload_time": "2023-08-10T14:22:43",
            "upload_time_iso_8601": "2023-08-10T14:22:43.976828Z",
            "url": "https://files.pythonhosted.org/packages/69/fb/8307a614f16517ee95e68db69200a83a15df150afa5fc9b0a70a31180f49/enpassreadercli-0.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-10 14:22:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "costastf",
    "github_project": "enpassreadercli",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "enpassreadercli"
}
        
Elapsed time: 0.09764s