-
-
Exporting my Kindle library data
basic script to export base data from HTML files -
Python Library: pynput
control mouse and keyboard with Python -
Python Library: termtables | Pretty tables in terminal
-
Python Snippets
a collection of useful snippets -
Sending emails with Python
-
Fetch website metadata from URL
-
Gitignore
-
Extract all app logos to PNG
-
Python Library: defaultdict
standard Python libraries useful when creating dicts -
Libraries for Python
-
Python Library: imap-tools
High level lib for work with email by IMAP -
Managing Virtual Environments in Python
venv are fiddly sometimes but necessary -
Python Library: mutagen
read and write audio tags for many formats -
Python Library: openpyxl
A Python library to read/write Excel 2010 xlsx/xlsm files -
Python Library: re (regex)
-
Python Library: sqlite3
built-in library for managing SQLite database -
Python Library: tinytag
Read music meta data and length of MP3, OGG, OPUS, MP4, M4A, FLAC, WMA and Wave files -
my-utils
functions I use across many projects -
Fetching data from TMDB API
after failing with 2 libraries, just using Python's requests to fetch movie data from TMDB API - themoviedb.org -
Python Library: requests
Python HTTP for Humans. Requests is a simple, yet elegant HTTP library. -
Python Library: slugify
-
Save images with Python
how to save images on disk with Python -
My Python scripts boilerplate
this is the boilerplate I use as a snippet in VS Code when I create a new Python script -
How to save confidential data in environment variables with dotenv
best practice is to never have passwords and alike in clear text in Python scripts - here is the solution I use