save and load API keys from a file
Project description
apikey
Installation
The apikey git repo is available as PyPi package
pip install "apikey>=0.2.1" pip install git+ssh://git@github.com/ulf1/apikey.git
Usage
Store in default location $HOME/.apikey-store
import apikey
apikey.save("service1", "supersecret")
apikey.save("service2", "donttellanyone")
apikey.save("service3", "aboutthiskey")
key1 = apikey.load("service1")
key2 = apikey.load("service2")
key3 = apikey.load("service3")
Store in a specific file
apikey.save("service42", "topsecretkey", filename="/srv/.secretkeys")
key = apikey.load("service42", filename="/srv/.secretkeys")
Appendix
Install a virtual environment
python3.6 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install -r requirements-dev.txt
Python commands
Check syntax: flake8 --ignore=F401 --exclude=$(grep -v '^#' .gitignore | xargs | sed -e 's/ /,/g')
Run Unit Tests: pytest
Publish
pandoc README.md --from markdown --to rst -s -o README.rst
python setup.py sdist
twine upload -r pypi dist/*
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
apikey-0.2.4.tar.gz
(6.6 kB
view details)
File details
Details for the file apikey-0.2.4.tar.gz
.
File metadata
- Download URL: apikey-0.2.4.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4efe5f906110242cac7cf7f0e92cc414922236f81a64dcb55a58ea7ecce2577 |
|
MD5 | 90b82ff234dcf121b96f240fbacd3f20 |
|
BLAKE2b-256 | e883b5cb02a965ae278465bf9f9d6388b45203be4392a0b5c15fe346f95cc243 |