Alternatives
Products that do what I wrote a Bash library does
Shelon: https://github.com/housni/sheldon It's not a framework, it's a library. It attempts to mimic function names in Python. Most functions work in Bash 4.3+ but there are those that work on older versions. The 'help' target in Makefile is on crack! Check the issues in that repo for upcoming features. Useful for DevOps Engineers or anyone who has to write Bash scripts.
- 1

- 2BF
2020 · github.com
- 3PT
2017 · github.com
- 4AC
2018 · npmjs.com
- 5

- 6PP
Hi everyone! I just released the Practical Python Projects book! (https://practicalpython.yasoob.me) I am happy to announce the first version as a release candidate. I have poured a lot of love into writing this book and would love to hear what you guys think. (A limited 100% off and discount coupons at the end) This is not a pure beginner book. The book does assume some background Python knowledge. You need to know the basics like methods, functions, classes, and such. If I use something that is not typically covered in beginner Python books, I will explain it before I use it.…
2021 · practicalpython.yasoob.me
- 7AC
2010 · pyxc.org
- 8AB
I'm constantly having to look up the syntax for looping in bash so I made this tiny website to make it quick and easy.
2024 · bashforloop.com
- 9SS
2015 · github.com
- 10SA
The startup I work for has an internal, bash-based, cli that basically amounts to shared aliases with a common entrypoint. As the number of aliases has grown, I've had a desire to group functionality together in subcommands, add more help strings, and have better tab completion. I know I could convert it to, e.g., a python script, but I was curious what was possible if we continued to use bash. I couldn't find anything that solved those problems without lots of extra machinery. I understand why, shell scripts are generally not long, and focused on a dedicated task; adding cli features to…
Mar 2026 · github.com
- 11IB
I wrote a tutorial on how to create Bash scripts, where the command line interface runs entirely in the browser using v86 (https://github.com/copy/v86), and the code editor uses Monaco.
2025 · sandbox.bio
- 12MW
This is a little project I've been working on for a while in order to better learn Python. Although IRC may not exactly be the most exciting medium, I still find it to be fun and useful, this interest lead me to writing a bot. In doing this I realized that what would actually be more interesting would be if I had a framework. There may already be such a thing, certainly there are IRC libraries, but I don't know if they're well-suited to deploying bots. At any rate if for no other reason than the fact that I am relatively new to programming and eager to learn I decided to build a framework.…
2011
- 13NL
Hey folks, I just wanted to share a quick script I threw together called notational ls. One of the big problems of any code base (or any filesystem) is that it's hard to tell what's what - folder and file names often trade brevity for clarity. So I thought about a version of `ls` that works like this: > nls web: Where python web server files are stored ad_hoc: One time scripts ios: Our IOS code images Adding descriptions is really easy too: > nls images Images SHARED between both ios and web web: Where python web server files are stored ad_hoc: One time scripts ios: Our IOS code…
2011
- 14

Kosh is a Bash-compatible runtime focused on VERY detailed diagnostics and performance. The project started from frustration with how difficult shell errors can be to debug. And how slow some tools are. The project is feature-complete and the core is usable enough to experiment with. There is a Language Server that works on shell scrips, but I'm planning to expand it to support every conf/YAML/etc file that may have Bash embedded in, e.g. GitHub workflows. Report: bash incompatibility, broken diagnostics, cases where existing tools may solve the problem better Thanks!
8d ago · github.com
- 15AB
2021 · github.com
- 16LD
Hi HN! This is Qian here with Peter (KraftyOne) and Jeremy (jedberg). We’re building DBOS, an open-source, lightweight durable workflows library that you can add to Python apps in just a few lines of code. It’s comparable to popular open-source workflow and queue libraries like Airflow and Celery, but more lightweight with a greater focus on reliability and automatically recovering from failures. Our goal in building DBOS is to make workflows lightweight and flexible so you can add them to your existing apps with minimal work. Everything you need to run durable workflows and queues is…
2025 · github.com
- 17SB
Hi HN! I built a CLI tool called ShellTalk for macOS, Linux, and web (WebAssembly) that maps English text to the corresponding Bash commands. ShellTalk is written in Swift and available under the Apache 2.0 license on GitHub. I was inspired a few weeks ago after reading the Meta-Harness paper and seeing a tool called Hunch that did something similar using the Apple Foundation model. I often forget flag names and orders, but I wanted something that worked consistently. The 3B AFM worked surprisingly well with Hunch, but it felt slow and sometimes slight changes in what I wrote would result in…
Apr 2026 · barrasso.me
- 18IW
Background: I've been working on a book to help developers learn and write idiomatic Python. It's taken far longer than I imagined, but today I made it available for purchase (http://www.jeffknupp.com/writing-idiomatic-python-ebook). The automated build and test system I'm using is ridiculous. It uses: virtualenv, tox, pytest, coverage, doctest, pandoc, make, xelatex, makeindex, and a ~200 line Python script to collect and format the output. The details of the build/test system I created are described in detail here:…
2013
- 19BJ
2020 · bashojs.org
- 20SI
2021 · sourcery.ai
- 21OP
Hello HN, Pietro here! I've been really excited to see the recent buzz around MCP and all the cool things people are building with it. Though, the fact that you can use it only through desktop apps really seemed wrong and prevented me for trying most examples, so I wrote a simple client, then I wrapped into some class, and I ended up creating a python package that abstracts some of the async uglyness. You need: * one of those MCPconfig JSONs * 6 lines of code and you can have an agent use the MCP tools from python. The structure is simple: an MCP client creates and manages the connection and…
2025 · github.com
- 22MA
Hi HN, A few years ago, I wrote a tool called MakeMeFish. MakeMeFish is a wrapper around fzf to list Makefile targets and show what they contain. I use MakeMeFish myself every day, it's a pretty simple tool but it has been immensely useful to me and many others. MakeMeFish is great, but only works in Fish shell. I've been planning a rewrite to support other shells for years, but hadn't gotten around to do it. We all know that AI tools are great at writing boilerplate python, js and java code, but struggle with novel and edge case code. When Gemini 2.5 was released, I used MakeMeFish as my…
Jan 2026
- 23SR
Hi! SparrowHub - https://sparrowhub.org is repository of scripts to solve various tasks. Find specific script here and use it or share your script with others uploading script to SparrowHub. Sparrow - https://github.com/melezhik/sparrow - command line client provides API to distributes/search/install/configure/run scripts in centralized manner, as usual packages of software ( like deb or rpm rpm ), it works on most any Linux platforms. SparrowHub/Sparrow - easy way to develop your scripts and distribute them across your teams! Will be…
2017
- 24SH
My first public repo intended to be used by others. While I am curious on how you'd use it, I'd love feedback on the code/setup/pythonic nature of it all. I am on a career break and just experimenting a lot, especially on ways to make AI useful for everyday things. I've coded more in the past 6 weeks than the past 6 years and don't know a lot of python devs. Python was never big language at my previous companies, but something I used a lot for tools and projects going back to college compiler days. Old habits die hard. Are there tools that do this as you screenshot? Probably...…
2024 · github.com
Ranked by how close each launch is in meaning, then by votes. Refine with a description →