nowfound

Alternatives

Products that do what Thread4.eu – Platform to deploy a Python function to the web in seconds does

Hi! I’ve always wanted a simple way to throw my Python projects online. Just to try things out, share them, or test a webhook with a real endpoint. But every time I hit the same wall: Buy a server, Set up HTTPS, Configure DNS, Get a domain. Write boilerplate to glue it together. It always felt like too much for something so small that I wanted to test. So Ive been hacking on Thread4 (currently in alpha): a tiny platform where you can write a Python function and go live instantly at yourname.thread4.eu. It’s not for production use, just quick testing, experimenting, or sharing your idea…

  1. 1PP

    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

  2. 2

    Write, run, debug, embed and share your Python code

    2022

  3. 3MW

    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

  4. 4
    Thread156

    Instant wireframes for your app to share your ideas

    2024

  5. 5MF

    Hey HN. I've just launched my very first webappp and would love your feedback. http://www.7bks.com It's a book list sharing website - kind of like playlists for bookworms. The site is built on pyton/appengine - and I learned to code in under 4 weeks to build the site. There's more details on the background of the site here: http://www.7bks.com/blog/179001 I've also published the full Python code for the site here: https://gist.github.com/670034 Feedback is really important to me and I want to work hard to make the site better so any and all suggestions are greatly appreciated. Contact…

    2010

  6. 6
    Cliprun110

    Run Python code from any website with a right-click

    2025

  7. 7

    Run Python code in browser

    2021

  8. 8AI

    I had an idea a couple days ago and I went with it. Basically, the idea was to create an IRC channel to help people find jobs; computer related jobs, in particular. There would be a bot to display job listings. So I started working on a first take on the bot. I decided to use Python because I love the language and I wanted to get more experience with a its libraries. TwitterBot (or JobFeeder on ##jobfeed) as I call it, uses Twisted (https://pypi.python.org/pypi/Twisted) and Twitter (https://pypi.python.org/pypi/twitter)for now. Basically, it gets the…

    2014

  9. 9SW

    Hi, A few months ago, I shared a tool I built for personal use to easily trace HTTP client requests in any Python app. It links requests to the corresponding Python code and comes with a nice UI. By easily, I mean: no external dependencies, no setup, no superuser rights, and no code modifications — just do "pip install httpdbg" and then launch your code using the "pyhttpdbg" command. That’s it. I received a lot of positive feedback — not just here, but also on social media, in podcasts, and beyond. So, thank you! Since I last introduced httpdbg, I’ve made many improvements — based on both my…

    2025 · httpdbg.readthedocs.io

  10. 10PT

    Hi there HN! I wanted to show you a weekend project I put together. Pingquick (https://www.pingquick.dev/) is a way to create APIs from your python functions. Just write/paste the function in, and it'll give you an endpoint to POST to. I made Pingquick because I just couldn't stand having to deal with deployment for some simple python functions. So, now I just put my code there and I can ping it as needed without needing to worry about any setup. Any and all feedback is very much welcome! Ian

    2023 · pingquick.dev

  11. 11SD

    Hey HN, I wanted to share with you what I've been working on for the past few months – the Splunk Developer Platform[1]. We released our Python SDK[2] back in August, but just last week we released our Java[3] and JavaScript[4] ones, and the JS SDK was the one I've been working on. It was a great learning experience for me – first real foray into JavaScript and Node (the SDK works in both the browser and Node), and was a lot of fun to try different things out releasing it. I ended up building on a couple of open source libraries (and contributing back). We are building out Splunk's developer…

    2011

  12. 12OP

    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

  13. 13IC

    In my last project, I was struggling to create and monitor cron jobs. So, instead of creating hundreds of standalone scrips and executing them with cron, I decided to turn those scripts into multiple endpoints. Next, I created a single service that I could schedule HTTP requests to those endpoints and monitor its execution. No more scripts, now everything is endpoints that I can run manually at any time I turned this scheduler service into a Micro-SaaS so you don't have to build it yourself: beew.io I know you can Schedule HTTP requests with Zapier but come on... I will not pay 50 bucks for…

    2021

  14. 14OS

    Hey HN, half a year ago we were building a feature where our users could trigger long-running jobs with the following requirements: (i) the job is provisioned by the user action (e.g., clicking a button in the UI), (ii) the job can be canceled by the user, (iii) the progress of the job can be inspected while the job is running, (iv) hardware for the job is provisioned only when needed (the job may require expensive hardware and isn't called that frequently). Because we couldn't find any existing ways of achieving this we decided to implement one for Python. Currently, it uses an AWS ECS…

    2023 · github.com

  15. 15FP

    As developers, we've used StackOverflow, blogs, tutorials, etc to solve our day-to-day code issues and we've been able to find answers to virtually all of our questions. At the same time, CodePen, CodeSandbox, JSFiddle, etc have made it simple to share and execute code for frontend developers but when I look for folks working at the backend side (preferably Python) there is nothing that entices the whole developer community yet. While other Python sandbox solutions are available, they do not provide installation choices or are not intended for embedding and sharing. With this thought, we…

    2022 · pythonsandbox.dev

  16. 16MF

    Hi! Long time reader, first time submitter. I've finallllyy got my first webapp online. It's been a long time coming, I started it over a year ago and just been an hour here, a couple of hours here, and a period of a couple of months of nothing. I first wrote it as a way to learn some python it sort of grew to fill a need I had. It's at a point now where I'd LOVE some feedback as I am going round in circules. Please, it's free, just hit the home page, plugin in a name/email and url you want to links checked on. If you use the name 'DeleteMe' I will remove the account after a week, so feel…

    2012

  17. 17IM

    I found a serious bottleneck in Python binding of Wasmer and Wasmtime and I found a trick to make 25x faster. Then beat all that using NumPy.

    2023 · medium.com

  18. 18IB

    As a software engineer, my reflex has always been to script everything I can. Scripting is easy, but everything around it is tricky: scripts have to run somewhere, they need access to credentials, they need to be monitored. None of it is simple. No-code automation platforms such as Zapier or IFTTT are too restrictive for technical tasks; CI/CD platforms make it easy to script tasks related to a repository, but are limited when trying to do anything else. I wanted the low level control you have when writing scripts while retaining the comfort of a platform managing execution for me. So I…

    2022 · exograd.com

  19. 19SA

    Hey HN community, I'm excited to share Starfyre, a cutting-edge library that enables you to create front-end applications by leveraging the power of Python. It's perfect for those who love Python and want to extend its capabilities to frontend development. Key Features: * Reactive Frontend Development: Starfyre allows you to build reactive frontends using only Python. This means you can create highly interactive and real-time applications with ease. * Effortless Interactive Application Creation: With Starfyre, the process of creating interactive applications becomes straightforward. You…

    2023 · github.com

  20. 20FO

    Recently, I saw few Python accelerators getting a lot of attention, and I thought it would be a good time to finally present the project that we will make available to test in the upcoming days. Flyable is an ahead-of-time compiler that takes your Python code, analyses it, and outputs very optimized machine code. Micro-benchmarks show that it produces programs that run between 10-70x time faster than Python. Flyable is certainly one of the fastest and easiest ways to accelerate your Python code. It finally allows Python to compete in the ring of fast and efficient languages without having to…

    2020

  21. 21IC

    Read an article about analyzing Garmin data with AI. Sounded great — except I didn't want to send my health data to any cloud service. So I asked Claude to write me 2-3 scripts and a dashboard. This escalated a bit. 30 days and 20$ later I have this: A local-first Garmin archive with interactive HTML dashboards, Excel exports, weather and pollen context, AES-256 encrypted token storage, and a self-healing data pipeline with 515 automated tests. Windows desktop app, no terminal needed. Nothing leaves your machine. I never wrote a line of Python. I understood the problems and made the…

    Apr 2026 · github.com

  22. 22LA

    Happy New Year HN! I’m the co-creator of Orbiter, a dead simple tool for uploading and hosting static sites. We built Orbiter for ourselves and realized it would probably be useful for others. Static site content is some of the simplest on the web, yet hosting this content has gotten increasingly complex over time. Many of you are engineers and don’t have much problem with CI/CD pipelines as a mechanism for deploying a website. This is true for me as well. But there are times when I want to just upload a simple website. I might not even want to put it under source control. And I know…

    2025 · orbiter.host

  23. 23LA

    Hey everyone, we just released a new version of our Infrastructure as Code Python SDK that now runs entirely on your machine - no account required. LaunchFlow extends OpenTofu to provide features like multi-environment support [1], autoconfigured infrastructure clients [2], and API release management [3]. Our goal is to provide a Python-native infrastructure toolkit that handles everything from automating your infrastructure to using it in your application code. You can use our library of preconfigured OpenTofu modules to add GCP / AWS infrastructure to your app with just a few lines of…

    2024 · launchflow.com

  24. 24DA

    I built an open-source desktop app for running and monitoring Python agents that talk over TCP. It works on macOS, Linux, and Windows. The basic idea is simple: if a repo has an `agent.py` entrypoint, the app can import it from GitHub, install `requirements.txt` if needed, connect it to a TCP server, and show what it is doing in one UI. Current features: * import agent repos from GitHub, including private repos * run agents through `agent.py` * optional `requirements.txt` support * optional `id.json` for agent metadata * connect agents to TCP servers * inspect message flow in one place *…

    Mar 2026 · github.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →