xonsh is a shell like Fish or Bash that gives you the ability to execute Python directly in the shell. You can install xonsh with pipx or just create a virtual environment yourself and pip install everything you need. This covers everything I need though, unless you wish to use…
Fetch RSS Feed With Fish Shell And Python

Here is a working example of how to fetch an rss feed with Fish shell and Python. This grabs 40 or so of the latest articles from hacker news with a simple command. You could add code to grab actual dates as opposed to count providing an arg to the…
Manjaro Sway (swaybar) Weather Script

I installed Manjaro Sway to check it out and noticed the temperature returned by the included Manjaro Sway weather script was wrong or not updating to the current temp. It seems Manjaro has their own API generated from Open Medeo data. I decided to write my own and go straight…
Animated Weather Radar To ASCII For Linux Terminal Viewing

Animated weather radar to ASCII for Linux terminal viewing script will download a static or animated radar image and convert to ASCII art for display in a terminal. If you want to display an animated weather radar in the terminal this should do it. For a full featured terminal weather…
Biyori: Terminal Weather With Radar

Biyori: Terminal Weather. TUI ascii weather application. If you only want a fully working stand-alone version of animated ASCII radar, see this. An updated version of the code is in the below zip as well. Instructions to configure and get everything working included in zip or grab below. Download Source…
Simple iPhone connection monitor for Linux with GLib/Gio.
A very simple Gio iPhone connection monitor in Python 3. I wrote a crappier version of this awhile ago and revamped it. Hope it’s helpful to someone.
Get Amazon Affiliate Links With Image From Python Using Amazon’s API.
This script will show you how to build an Amazon affiliate link with image from the new API that generates HTML that can be inserted into a blog. I made this as an example for my wife. She ended up using a plugin in WordPress. It uses python-amazon-paapi to do…
Remove old snap data for uninstalled snap apps with Python
Snaps do have a purge argument but I always forget to use it. I wrote a script in Python to help with my laziness and remove old Snap data for me. This will only remove snap data for apps that have been uninstalled. If you want to keep the data…
AutoStart Maestral Dropbox Client In Python Virtual Environment
Update May 1st, 2024: Maestral is now available via pipx. Pipx is similar to virtual environments and simplifies things. First thing, open the terminal and run each command as listed. # = comment… Install pipx: sudo apt install pipx # I am running Ubuntu 24.04 currently. Alter for your system.pipx…
Creating a simple radial percent gauge in Flet
I was cleaning up and found some old gauges I had built years ago. I created the images in Inkscape and likely deleted the Flash and JavaScript code. Anyway, since I am really digging working with Flet I thought it might be cool to re-purpose the images and create a…