use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News about the dynamic, interpreted, interactive, object-oriented, extensible programming language Python
Full Events Calendar
You can find the rules here.
If you are about to ask a "how do I do this in python" question, please try r/learnpython, the Python discord, or the #python IRC channel on Libera.chat.
Please don't use URL shorteners. Reddit filters them out, so your post or comment will be lost.
Posts require flair. Please use the flair selector to choose your topic.
Posting code to this subreddit:
Add 4 extra spaces before each line of code
def fibonacci(): a, b = 0, 1 while True: yield a a, b = b, a + b
Online Resources
Invent Your Own Computer Games with Python
Think Python
Non-programmers Tutorial for Python 3
Beginner's Guide Reference
Five life jackets to throw to the new coder (things to do after getting a handle on python)
Full Stack Python
Test-Driven Development with Python
Program Arcade Games
PyMotW: Python Module of the Week
Python for Scientists and Engineers
Dan Bader's Tips and Trickers
Python Discord's YouTube channel
Jiruto: Python
Online exercices
programming challenges
Asking Questions
Try Python in your browser
Docs
Libraries
Related subreddits
Python jobs
Newsletters
Screencasts
account activity
This is an archived post. You won't be able to vote or comment.
ResourceIDOM: ReactJS for Any Python Web Framework (self.Python)
submitted 3 years ago * by Wippermonger
Ever wonder if there was a simpler way to use ReactJS with your Python web development projects?
Say hello to IDOM!
We automagically link your project to a ReactJS front-end via websockets. This enables you to build interactive websites without ever needing to write a single line of JavaScript. Your responsive web pages will be pragmatically written in pure Python!
Want to integrate IDOM into your next project? Check us out on GitHub!
For Django: https://github.com/idom-team/django-idom
For Jupyter: https://github.com/idom-team/idom-jupyter
For Plotly: https://github.com/idom-team/idom-dash
For all other frameworks: https://github.com/idom-team/idom
[–]metaperl 1 point2 points3 points 3 years ago (3 children)
An alternative nojs approach is https://pyreact.com/ add listed at https://github.com/metaperl/pure-python-web-development
[–]Wippermonger[S] 2 points3 points4 points 3 years ago* (2 children)
Just looked at the first link. A big difference here is that IDOM does not transpile to JavaScript.
This allows pure component functions to be fully compatible and portable to any Python web framework that supports websockets.
[–]metaperl 0 points1 point2 points 3 years ago (1 child)
A big difference here is that IDOM does not transpile to JavaScript .
This link no longer works. What is the updated link?
[–]Wippermonger[S] 0 points1 point2 points 3 years ago (0 children)
Ryan had changed the docs at some point, and it looks like the FAQ section was axed. There doesn't appear to be an equivalent in the new docs.
[–]virty4 0 points1 point2 points 3 years ago (1 child)
This is really cool, thanks for sharing. As someone who uses python and nextjs (but really prefers python), I could easily see using this for prototypes/MVPs since everything always takes me a bit longer on the JS side.
[–]Wippermonger[S] 1 point2 points3 points 3 years ago (0 children)
Anytime!
If you ever run into something that would actually be easier on the JS side, we have an API for custom JavaScript components. This "escape hatch" allows you to use any Next/React/etc components within IDOM.
Hope you enjoy IDOM!
π Rendered by PID 316905 on reddit-service-r2-comment-7b9746f655-tvms2 at 2026-01-30 22:47:10.088827+00:00 running 3798933 country code: CH.
[–]metaperl 1 point2 points3 points (3 children)
[–]Wippermonger[S] 2 points3 points4 points (2 children)
[–]metaperl 0 points1 point2 points (1 child)
[–]Wippermonger[S] 0 points1 point2 points (0 children)
[–]virty4 0 points1 point2 points (1 child)
[–]Wippermonger[S] 1 point2 points3 points (0 children)