aws/get_latest_ecr_version.py
Great for when you use the immutable tag latest that shifts to the
next newer version of a repository image.
encryption/password_hashing.py
Demonstrates the ease of hashing a secret for safe storage.
encryption/password_generator_simple.py
A simple method for generating random passwords.
encryption/keyring_storage_and_retrieval.py
Example of storing and retrieving senstive information on the systems OS.
encryption/create_pgp_keys.py
encryption/file_decrypt_pgp.py
encryption/file_encrypt_pgp.py
encryption/create_rsa_keys.py
encryption/file_decrypt_rsa.py
encryption/file_encrypt_rsa.py
json/json_validation.py
json/json_validation_extended.py
Examples of validating a JSON object using JSON schema definitions.
jwt/create_jwt_token.py
Example of the creation of a Java Web Token (JWT) using a configuration dictionary.
jwt/read_validate_jwt_token.py
Using the token generated from above, or anywhere really, this script demonstrates how to validate a JWT.
networking/chat_server.py
networking/echo_client.py
networking/echo_server.py
networking/epoll_server.py
networking/forked_server.py
networking/host.py
networking/threading_server.py
toml/toml_reader.py
Example of reading a TOML configuration file.
toml/toml_writer.py
Example of creating a TOML configuration file from a data dictionary
using the rtoml package and then re-opening.
combine_pdfs.py
create_pdf.py
rotate_first_page.py
split_half_half.py
Examples of manipulating PDF documents using the borb package.
misc/no_conditions.py
How to remove the over usage of conditionals
misc/using_enums.py
Example of how to establish enumerator classes
misc/using_dataclass.py
Example of using the dataclasses.dataclass class.
misc/check_required_keys_exist_in_a_dict.py
Examples of how and when to use the all or any function.