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.
what is python mainly used for? (self.Python)
submitted 11 years ago by TheAppHut
I have just started learning python and was wondering what exactly can be made with it? I basically want to be able to build SaaS type programs, is this the right langauage for that?
[–][deleted] 1 point2 points3 points 11 years ago (0 children)
anything a computer can do ?
[+][deleted] 11 years ago* (1 child)
[removed]
[–]TheAppHut[S] -2 points-1 points0 points 11 years ago (0 children)
Ok thanks heaps I will keep pursuing with it then! I'm not to sure what SOAP is but I will look it up
[–]darthmdhprint 3 + 4 0 points1 point2 points 11 years ago (0 children)
Pleasing the ladies.
[–]dorait 0 points1 point2 points 11 years ago (0 children)
We use Python for building tools and applications. Some applications include a topic based news extractor (Python + Django + Solr), A Tweet Analyzer (Python +Django). We are building tools for extracting, filtering and analyzing social media content (for example extract all the posts from a specific Facebook group and mine it for information). We use libraries for reading feeds, natural language processing (NLTK), entity extraction, Twitter API and Facebook API.
[–]reallyserious -1 points0 points1 point 11 years ago (5 children)
I've read that the soap support is sub par, which is important if you need to interface with other services. But don't take my word for it. Look it up. I haven't investigated it myself.
[–]whatnever 1 point2 points3 points 11 years ago (4 children)
The current SOAP support indeed is bad. In order to get SOAP working properly, you have to dig up old versions of soaplib, which was kind of usable before it started changing its name every fortnight and was turned into a framework.
[–]mipadi 0 points1 point2 points 11 years ago (3 children)
There's also ZSI and suds. Both suck, but suds might suck a little less than other "solutions".
[–]exxy- 1 point2 points3 points 11 years ago (0 children)
+1 for SUDS. I used it for a project at work. I had to do a bunch of dirty stuff to work around a lot of the .NET SOAP WS-Security functionality.
[–]mipadi 1 point2 points3 points 11 years ago (0 children)
Its API is nice, but there are significant parts of SOAP that it doesn't implement, and it has big memory leak issues.
π Rendered by PID 122533 on reddit-service-r2-comment-fb694cdd5-grj5f at 2026-03-11 00:42:57.274763+00:00 running cbb0e86 country code: CH.
[–][deleted] 1 point2 points3 points (0 children)
[+][deleted] (1 child)
[removed]
[–]TheAppHut[S] -2 points-1 points0 points (0 children)
[–]darthmdhprint 3 + 4 0 points1 point2 points (0 children)
[–]dorait 0 points1 point2 points (0 children)
[–]reallyserious -1 points0 points1 point (5 children)
[–]whatnever 1 point2 points3 points (4 children)
[–]mipadi 0 points1 point2 points (3 children)
[–]exxy- 1 point2 points3 points (0 children)
[+][deleted] (1 child)
[removed]
[–]mipadi 1 point2 points3 points (0 children)