SQLAlchemy is a powerful tool that lets Python developers define their database schemas using simple classes. I made Paracelsus to turn those SQLAlchemy defined databases into diagrams that can be used to visualize the schema.
Category: Open Source
Rob’s Awesome Python Template
Rob’s Awesome Python Template is a highly configurable CookieCutter template that’s packed full of best practices for Python Projects.
Simple Multiprocessing with QuasiQueue
QuasiQueue is a MultiProcessing library for Python that makes it super easy to have long running MultiProcess jobs. It handles process creation and cleanup, signal management, cross process communication, and all the other garbage that makes people hate dealing with multiprocessing.
Automatically Updating Python Requirements Files with Github Actions
The action-python-lockfile-update project is a Github Action, freely available for anyone to use, that uses pip-tools to rebuild your requirements.txt files on a schedule.
Introducing DapperData for Formatting YAML and JSON
Introducing DapperData, a CLI for formatting JSON and YAML that works well with Python code bases.
Multi-Py: Multiplatform Container Images for Python Packages
Multi-Py publishes container images for popular Python packages targeting AMD64, ARM64, and ARM v7, on Ubuntu and Alpine.
Why I’m looking for Sponsors on Github
After two decades of open source development I’m looking for people to sponsor my work.
A Simple Jekyll Portfolio Theme
I write a lot of software, and I like sharing it with the world. So when I decided to redo my portfolio it was only natural that I release the theme itself as an open source project.
GitStars – A Github API for Front End Development
TLDR: GitStars Github, Documentation, and New Badges. Developers love badges. For these reason there are a ton of different Github Badges websites that let you build out your own badges for your projects. Most of them have the same issue though- they stop working quickly due to the Github API Ratelimiting, which only allows 60…
urlparser – a simple python program for extracting info from URLs
I regularly run into the need to use part of a URL inside of shell scripts- such as extracting the hostname and port from a URL in order to check if the service is reachable- and got a bit tired of screwing with regex. The urllib python library’s parse component is a great tool for…