Easily manage data storage and logging across repos
Project description
SecureData
A library that allows for easy reading/writing of settings across repositories, as well as mail and logging.
Author
Features
- Get/Set data within a JSON file in the location of your choice
- Using rclone, automatically sync to/from directories as needed
- Log to a file/directory of your choice without having to configure
logger
each time - Send/receive mail
Structure
- Data is stored in
settings.json
(in~/securedata
by default) - Logs are written to
~/securedata/log
by default
Installation and Setup
python3 -m pip install securedata
- It is NEVER a good idea to store your password in plaintext; for this reason, I strongly recommend a "throwaway" account that is only used for sending emails
- Gmail (as of May 2022) and most other mainstream email providers won't work with this; for support, search for sending mail from your email provider with
smtplib
. - In
settings.json
, add theemail
object to make your settings file look like this example:
{
"email": {
"from": "throwaway@example.com",
"from_pw": "example",
"from_name": "Raspberry Pi",
"to": "destination@protonmail.com",
"smtp_server": "example.com",
"imap_server": "example.com",
"port": 123
}
}
Configuration
- To choose where
settings.json
is stored, use
securedata config
- To choose where logs will be stored, edit
settings.json
and setpath_log
to the full path to the log folder.
Examples
setItem
from securedata import securedata
securedata.setItem("employee", "Tyler", "salary", 7.25)
results in this structure in settings.json:
{
"employee": {
"Tyler": {
"salary": 7.25
}
}
}
getItem
from securedata import securedata
print(securedata.getItem("employee", "Tyler", "salary")) # given example settings.json above
> python3 test.py
> 7.25
mail
from securedata import mail
mail.send('Test Subject', 'Test Body')
log
from securedata import securedata
# writes to a file named LOG_DAILY YYYY-MM-DD in the default log folder (or securedata.getItem('path_log')) inside a YYYY-MM-DD folder
securedata.log("Dear Diary...")
securedata.log("This function hit a breakpoint", level="debug")
securedata.log("Looks like the server is on fire", level="critical")
securedata.log("This is fine", level="info")
# writes to a file named LOG_TEMPERATURE
securedata.log("30", logName="LOG_TEMPERATURE")
# writes to a file named LOG_TEMPERATURE in /home/pi/weather
securedata.log("30", logName="LOG_TEMPERATURE", filePath="/home/pi/weather")
# format
# 2021-12-29 19:29:27,896 — INFO — 30
Dependencies
- Python >= 3.6
- Rclone
- optional, used to sync data to/from cloud providers
- support for customizing this with
securedata.config
in a future update
Disclaimers
- This is an early stage project. There are still some things to tweak, and although I've done quite a bit of testing, I can't guarantee everything that works on my machine will work on yours. Always back up your data to multiple places to avoid data loss.
- If you find any issues, please contact me... or get your hands dirty and raise a PR!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
securedata-2022.4.9.2.tar.gz
(7.2 kB
view details)
Built Distribution
File details
Details for the file securedata-2022.4.9.2.tar.gz
.
File metadata
- Download URL: securedata-2022.4.9.2.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f44d464ecc134f05ff805e5ab6c8b4bdf98277a952515ec8290757033f3573ea |
|
MD5 | 787f510ef533d7197ad9b62228573341 |
|
BLAKE2b-256 | b26d2ee771bfa115f78672504734f7fe68446971d2608691414b11bdd7e9fc88 |
File details
Details for the file securedata-2022.4.9.2-py3-none-any.whl
.
File metadata
- Download URL: securedata-2022.4.9.2-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4e840bad7b6f2866804259b7513d34a9230c14fc4a0ab26de76a56f13d47b0d |
|
MD5 | 7424fb929c3e5c7ec2aa0c5be92e7776 |
|
BLAKE2b-256 | 84e691cd08244476d2e3802b5db5416b48877a6200212f98321596524ed2a107 |