marpy.io - AI coding platform built specifically for the Python stack

byβ€’
Marpy is a web-based IDE and AI coding assistant built specifically for the Python stack. It helps you go from idea to deployed app without wrestling infra, glue code, or half-baked JS-focused tools. Get Python-native autocomplete, refactors, and AI-generated modules that actually understand Django, FastAPI, and real-world backends. Marpy lets you prototype, iterate, and ship production-grade Python apps faster, all from your browser.

Add a comment

Replies

Best
Maker
πŸ“Œ
heyo! I've spent the last few years watching my friends and clients vibe-code hundreds of apps into existence. Almost every app has ended with us fighting JavaScript back-ends that would be twenty lines of FastAPI Python code. So, to deal with the pain I rage-built marpy. What is marpy? It’s a browser-based IDE, deployment platform, and AI assistant built exclusively for the Python ecosystem (Flask, FastAPI, Django). Think Replit or v0, but for us Python devs. Why Python? I joke that "if you read your Python code out loud and you sound like a caveman, you did it right." But, really, the syntax is simple and lends itself really well to LLMs. What's the stack? Python, MariaDB, Redis, Docker, and K8s at the core. With git integrations built in so when AI finally takes over the internet, you'll still have all of your code. My Philosophy I believe Artificial Intelligence is a highly specialized solution for specific problems, not a silver bullet; and I don't like the "AI will solve all the problems" hype. I also built marpy.io on marpy.io. I'm dogfooding my own Flask/MariaDB stack every day to make sure the "Just Enough" principle actually helps ship products that work. It would be awesome for you to join me. -Sethers

who is the primary user here. a Python developer who already has a local setup and VS Code configured is probably not switching to a browser IDE regardless of how good the AI is. the person who might actually love this is someone who knows Python but hasn't gotten deep into tooling yet. are you building for the experienced dev or the intermediate one because those are pretty different products

Β Good point. Definitely beginner/intermediate. I feel like experienced devs already have tooling in place, I know I do. With that said, I use it to hand projects off to other devs in a more consistent way.

I think for a beginner/intermediate user like myself, this would be a great tool. I usually switch between Windows for personal use and Mac for personal/work, so a browser-based, beginner-friendly Python tool would be invaluable. Keep up the great work!

Β Sweet. Thank you very much!!

The Python-first framing is the right bet here. Most AI coding tools optimize for the demo case (a Next.js app that looks good in a video), but Python-heavy workloads β€” Django migrations, async FastAPI services, pandas pipelines that touch prod data β€” have failure modes that JS-focused autocomplete just doesn't understand.

Curious how you're handling the "idea to deployed app" gap when the idea involves something stateful β€” a Celery beat task, a background worker that needs a DB connection. That's where I've seen vibe-coding tools fall apart: the generated code runs locally but assumes an environment that doesn't exist in prod. Does Marpy's context model pick up on infra assumptions early, or does that surface at deploy time?

Β It starts the project off with the infrastructure setup with Docker/k8s, so there is essentially no drift between dev/prod.

A Python-native browser IDE makes sense if it reduces the setup friction between idea, backend, and deployed app.

Β Yep. That's a big reason why marpy is opinionated out of the gate. It helps fill the gaps in getting python scaffolded and getting it from working locally to running in production.

Really interesting congrats for the launch

Framework-specific AST awareness for Django and FastAPI models is what separates this from generic AI tools. Most don't understand ORM relationships or dependency injection patterns. We've wasted hours cleaning up AI suggestions that looked plausible but broke with SQLAlchemy migrations. Does marpy maintain cross-file context, like tracking model schemas and router dependencies across the full project?

Β Yep! marpy parses your project's Python with AST and builds a live, framework-aware map of it. Your SQLAlchemy/Django models (columns, primary keys, foreign keys, and relationships) and your FastAPI routers follows their Depends() chains.

That map is fed to the assistant on every request and to inline completions as you type, ranked to whatever file you're working in, so suggestions are grounded in your actual cross-file schema and dependency wiring instead of

guessed from a single open file. It refreshes incrementally as you edit, so it should stay accurate on bigger projects.

On the SQLAlchemy migration pain specifically: marpy statically analyzes every migration and hard-blocks destructive operations (DROP/TRUNCATE) against production. This is a deliberate platform guardrail, not an optional setting. So the "plausible but broke" class of suggestion is exactly what it's designed to catch.

Interesting angle focusing specifically on the Python stack instead of trying to be an β€œeverything IDE”.

Feels like more AI tools are winning now by going deeper into a niche instead of broader.

Β Definitely, yes. And Python lends itself verrrry well to LLMs - so it's a good language to tackle.

The "understands Django and FastAPI ORM relationships" claim is the interesting one β€” does that come from reading my statically, or does it need a live DB connection to know the actual schema? Generic AI tools fall over right here: they'll happily generate a query against a relation that doesn't exist. Curious how deep the model-awareness goes before it starts guessing.

Β It essentially keeps your in memory as a reference. I don't let it guess, if it can't find a concrete answer it will ask instead of guess or assume.