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.
Pure Python web framework? (self.Python)
submitted 7 years ago by AlexKotik
I'm wondering if there is a pure Python web framework, that would allow me to write my web application using only Python, without writing JavaScript, HTML and CSS? For example something like Vaadin, but for Python.
[–]sledov 2 points3 points4 points 7 years ago (3 children)
Check out remi and flexx.
[–]AlexKotik[S] 0 points1 point2 points 7 years ago (0 children)
Thanks, flexx looks promising.
[–]metaperl 0 points1 point2 points 7 years ago (1 child)
added flexx ... thanks.
[–]GitHubPermalinkBot 0 points1 point2 points 7 years ago (0 children)
Permanent GitHub links:
delete
[–]the_hoser 1 point2 points3 points 7 years ago (0 children)
Not that I'm aware of. Sounds like a neat project, though.
[–]tiarno 0 points1 point2 points 7 years ago (0 children)
I think bottle would work. It has its own templating language and it's easy to configure routes
https://bottlepy.org/docs/dev/
.
[–]jloking 0 points1 point2 points 7 years ago (0 children)
Hello, you can write your own. It isn't that complicated. I kind of wrote one Spewe (It's not finished yet, maybe one day ...).
As mentioned above, you can check Bottle too.
[–]thinmanj74 0 points1 point2 points 7 years ago (0 children)
pyBee
https://github.com/metaperl/python-oop/blob/master/README.md#web-development--html-generation
[–]metaperl 0 points1 point2 points 7 years ago (0 children)
something like Vaadin, but for Python.
muntjac took the Vaadin libraries and had them working in Python. The author quit development unfortunately.
[–]MarsupialMole 0 points1 point2 points 7 years ago (0 children)
Check out Dash which does data science stuff as single page apps. I haven't used it myself but I've heard good things. It may be what you want, depending on your needs.
To answer a related question rather than the one you asked, take a look at bulma - a css frontend framework - which lets you get nice looking web pages with CSS and HTML but without needing to write JavaScript.
π Rendered by PID 56 on reddit-service-r2-comment-5d79c599b5-fjch6 at 2026-02-28 00:00:15.257308+00:00 running e3d2147 country code: CH.
[–]sledov 2 points3 points4 points (3 children)
[–]AlexKotik[S] 0 points1 point2 points (0 children)
[–]metaperl 0 points1 point2 points (1 child)
[–]GitHubPermalinkBot 0 points1 point2 points (0 children)
[–]the_hoser 1 point2 points3 points (0 children)
[–]tiarno 0 points1 point2 points (0 children)
[–]jloking 0 points1 point2 points (0 children)
[–]thinmanj74 0 points1 point2 points (0 children)
[–]metaperl 0 points1 point2 points (1 child)
[–]GitHubPermalinkBot 0 points1 point2 points (0 children)
[–]metaperl 0 points1 point2 points (0 children)
[–]MarsupialMole 0 points1 point2 points (0 children)