Contributing to Python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T23:25:06Z http://stackoverflow.com/feeds/question/127454 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/127454/contributing-to-python 5 Contributing to Python lucidguppy 2008-09-24T14:20:06Z 2008-09-25T09:01:24Z <p>I'm a pretty inexperienced programmer (can make tk apps, text processing, sort of understand oop), but Python is so awesome that I would like to help the community. What's the best way for a beginner to contribute?</p> http://stackoverflow.com/questions/127454/contributing-to-python/127493#127493 3 Answer by Decio Lira for Contributing to Python Decio Lira 2008-09-24T14:23:58Z 2008-09-24T14:23:58Z <p>I guess one way would be to help with documentation (translation, updating), until you are aware engouh about the language. Also following the devs and users mail groups would give you a pretty good idea of what is being done and needs to be done by the community.</p> http://stackoverflow.com/questions/127454/contributing-to-python/127501#127501 1 Answer by corey goldberg for Contributing to Python corey goldberg 2008-09-24T14:24:47Z 2008-09-24T14:24:47Z <p>If you aren't up to actually working on the Python core, there are still many ways to contribute.. 2 that immediately come to mind is:</p> <p>work on documentation.. it can ALWAYS be improved. Take your favorite modules and check out the documentation and add where you can.</p> <p>Reporting descriptive bugs is very helpful to the development process.</p> http://stackoverflow.com/questions/127454/contributing-to-python/127510#127510 1 Answer by paxdiablo for Contributing to Python paxdiablo 2008-09-24T14:25:23Z 2008-09-24T14:25:23Z <p>Get involved with the community: <a href="http://www.python.org/dev/" rel="nofollow">http://www.python.org/dev/</a></p> http://stackoverflow.com/questions/127454/contributing-to-python/127601#127601 2 Answer by Midhat for Contributing to Python Midhat 2008-09-24T14:43:35Z 2008-09-24T14:43:35Z <ol> <li><p>Add to the docs. it is downright crappy</p></li> <li><p>Help out other users on the dev and user mailing lists. </p></li> <li><p>TEST PYTHON. bugs in programming languages are real bad. And I have seen someone discover atleast 1 bug in python</p></li> <li><p>Frequent the #python channel on irc.freenode.net</p></li> </ol> http://stackoverflow.com/questions/127454/contributing-to-python/127651#127651 4 Answer by S.Lott for Contributing to Python S.Lott 2008-09-24T14:54:21Z 2008-09-24T14:54:21Z <p>Build something cool in Python and share it with others. Small values of cool are still cool. Not everyone gets to write epic, world-changing software. </p> <p>Every problem solved well using Python is a way of showing how cool Python is.</p> http://stackoverflow.com/questions/127454/contributing-to-python/127787#127787 0 Answer by dowski for Contributing to Python dowski 2008-09-24T15:15:24Z 2008-09-24T15:15:24Z <p>Start by contributing to a Python project that you use and enjoy. This can be as simple as answering questions on the mailing list or IRC channel, offering to help with documentation and test writing or fixing bugs.</p> http://stackoverflow.com/questions/127454/contributing-to-python/132237#132237 1 Answer by crystalattice for Contributing to Python crystalattice 2008-09-25T09:01:24Z 2008-09-25T09:01:24Z <p>I see two ways of going about it: working on Python directly or working on something that utilizes Python</p> <p>Since you're a beginner, you're probably hesitant to work on the core Python language or feel that you can't contribute in a meaningful way, which is understandable. However, as a beginner, you're in a good position to help improve documentation and other items that are essential to learning Python. </p> <p>For example, the Python tutorial is less of a tutorial (in the standard sense) and more of a feature listing, at least in my opinion. When I tried to learn from it, I never got the feeling that I was building up my knowledge, like creating an application. It felt more like I was being shown all the parts that make up Python but not how to put them together into a cohesive structure.</p> <p>Once I became more comfortable with the language (mostly through books and lots of practice), I eventually wrote my <a href="http://www.gidnetwork.com/b-26.html" rel="nofollow">own tutorial</a>, trying to provide not only the technical information but also lessons learned and "newbie gotchas".</p> <p>Alternatively, you can contribute to the Python world by using Python in programs. You can contribute to projects already established, e.g. Django, PyGame, etc., or you can make your own program to "scratch an itch". Either way, you not only build your knowledge of Python but you are giving back to the community. </p> <p>Finally, you can become an advocate of Python, encouraging others to learn the language. I kept suggesting to my supervisor at my last job to use Python rather than Java when a considering what to use for a new project. I tell everyone I know about the joys of Python and encourage them to give it a try. I convinced the administrator of a computer forum I frequent to create a section for Python. And, as I already said, I wrote a tutorial for Python and I'm working on a new one for wxPython.</p> <p>There are many ways you can contribute to Python that aren't necessarily programming related. As your programming skills grow, you may want to move further into code contributions. But you may gain more satisfaction by helping others find the same joy you found in Python.</p>