vote up 4 vote down star

I'm looking for a python project to use as example to learning python.

The project should have these features:

  1. is almost fully unit tested
  2. use consistently the code convention recommended by PEP 8
  3. it's elements are almost fully documented

Extra point features are:

  1. building, assembling, and release automation

EDIT:

The Question is too generic. I prepared a more specific question about the unit-test part.

flag

64% accept rate
I alredy read diveintopython. Thanks. I don't downvoted you. – Andrea Francia Dec 16 '08 at 20:16
Is there any topic that actually interests you? My python library has 191 .py files, hard to choose among them. I use mako, PIL, epydoc, docutils, django, mako and setuptools -- you could reject any or all as being "not right" for obscure reasons. – S.Lott Dec 17 '08 at 10:46
The topic I'm more interested is organizing unit test among multiple packages where the packages depth is more than one. I prepared a specific question for that. There also the topic about the build automation that maybe I'll develop more precisely in a next question. – Andrea Francia Dec 17 '08 at 13:10

closed as no longer relevant by Andrea Francia Dec 22 '08 at 18:25

8 Answers

vote up 3 vote down check

If you want some thing on the web domain, Trac is an excellent example.

link|flag
Thanks. If someone need a link the website of Trac is trac.edgewall.org – Andrea Francia Dec 16 '08 at 22:36
vote up 5 vote down

Start with the libraries already included with Python. Each of those is almost fully unit tested, follows PEP-8, and has extensive documentation.

And.

They're already installed as part of Python.

link|flag
There is any of these libraries that you would recommend? – Andrea Francia Dec 16 '08 at 19:03
The setuptools seems well documented and unit tested, but seems it uses some sort of ad hoc adaption of the standard unit testing. – Andrea Francia Dec 16 '08 at 19:12
@Adrea Francia: All of them. Pick one that interests you. Pick one that applies to the problem you want to solve. Pick one alphabetically. Pick one by size. They're part of the official distribution. They've been thoroughly vetted by a LOT of Pythonnistas. – S.Lott Dec 16 '08 at 19:17
@Andrea Francia: Yes "adaption". No "ad hoc". Subclasses and extensions are normal, especially to test something like this without walking all over your current installation. – S.Lott Dec 16 '08 at 19:39
Seems to me that the datetime package does not follow the PEP 8, name of classes aren't CamelCapitalized. – Andrea Francia Dec 16 '08 at 19:44
show 2 more comments
vote up 2 vote down

Django matches your criterias. But it's not really the easier way to start.

ClientCookie is probably less suited, but far easier to handle.

link|flag
In Django is not simple to find how to run the tests. And I didn't found a test for each source file. I wonder if every method or function is unit tested or not. – Andrea Francia Dec 16 '08 at 22:30
Instead of ClientCookie I downloaded the mechanize project which include the ClientCooikie. Even if this project is smaller than Django the unit testing part is well documented and there are also unit and functional tests. – Andrea Francia Dec 16 '08 at 22:31
vote up 0 vote down

You can try Google Code Search, and see what you can find for Python language. Each link has project specified, so you can check as many of them as you like.

Many C libraries have Python bindings (like wxWidgets, OpenGL, OpenCV etc) and those bindings usually have nice test coverage.

link|flag
vote up 0 vote down

A shameless plug, but I can recommend pyftpdlib the Python FTP server lib I work on occasionally. It's very well documented code, full unit tests, careful docstrings, and follows the Python style PEPs very strictly.

link|flag
Thanks! Your code is well documented and tested but I'm searching some ideas how to organize many tests of many classes of many packages. – Andrea Francia Dec 16 '08 at 22:33
I've generally found one test module per python module (named testmodulename), one TestCase per class (named ClassNameTest), to work well. – David Eyk Dec 17 '08 at 2:03
I have also nested packages ... where put the tests? How name they, how collect all tests? How to refer to the developing modules instead of the installed modules without use a possibly unconfigured PYTHONPATH? – Andrea Francia Dec 17 '08 at 13:14
vote up 0 vote down

I've recently released a simple package, Dyce (a dice roller with a parser and some other neat features), with exactly these aims. Right now it is strongest on build/package/release automation, but I'm working to improve the documentation and test suite. See the site for a more complete description.

link|flag
vote up 0 vote down

Elaborating a little on S. Lott's answer:

The specs point directly at a somewhat famous open source project, the Python Library. Have a look at python/trunk/Lib/test/regrtest.py, which will find all modules whose name is "test_*" in the test directory, and run them.

link|flag
vote up 0 vote down

Twisted is extremely well written and unittested. It follows PEP 8 in almost everyway except for using the uglyJavaNamingScheme.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.