473,756 Members | 2,900 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Popular Python projects with lots of pure Python code

For my thesis (once the bloody thing stops throwing bugs at me) I am
going to need to collect stats on the frequency that atomic types in
local variables are applied to various opcodes and methods. That means
that I need something to collect stats off of.

So I am trying to come up with a list of projects I can use to get my
stats from. the stdlib is a no-brainer. Also plan to use Docutils.
But beyond those most of the big Python projects I can think of have a
ton of C code which is of no use to me. I don't need to be able to run
it, just going to be compiling to .py files.

Any suggestions?

-Brett
Jul 18 '05 #1
11 1971
ReportLab?

HTH,
Larry Bates
Syscon, Inc.

"Brett C." <ba*@OCF.Berkel ey.EDU> wrote in message
news:ma******** *************** *************** @python.org...
For my thesis (once the bloody thing stops throwing bugs at me) I am
going to need to collect stats on the frequency that atomic types in
local variables are applied to various opcodes and methods. That means
that I need something to collect stats off of.

So I am trying to come up with a list of projects I can use to get my
stats from. the stdlib is a no-brainer. Also plan to use Docutils.
But beyond those most of the big Python projects I can think of have a
ton of C code which is of no use to me. I don't need to be able to run
it, just going to be compiling to .py files.

Any suggestions?

-Brett

Jul 18 '05 #2
In article <ma************ *************** ***********@pyt hon.org>, Brett C. wrote:
For my thesis (once the bloody thing stops throwing bugs at me) I am
going to need to collect stats on the frequency that atomic types in
local variables are applied to various opcodes and methods. That means
that I need something to collect stats off of.

So I am trying to come up with a list of projects I can use to get my
stats from. the stdlib is a no-brainer. Also plan to use Docutils.
But beyond those most of the big Python projects I can think of have a
ton of C code which is of no use to me. I don't need to be able to run
it, just going to be compiling to .py files.

Any suggestions?


What about MoinMoin and Mailman? Those are fairly large-ish pure-python
projects.

If 100% pure python isn't a must, PIL might also be able to yield useful stats
as all of the abstraction is done in python.

Hope this helps,

Troels Therkelsen
Jul 18 '05 #3
In article <ma************ *************** ***********@pyt hon.org>,
"Brett C." <ba*@OCF.Berkel ey.EDU> wrote:
For my thesis (once the bloody thing stops throwing bugs at me) I am
going to need to collect stats on the frequency that atomic types in
local variables are applied to various opcodes and methods. That means
that I need something to collect stats off of.

So I am trying to come up with a list of projects I can use to get my
stats from. the stdlib is a no-brainer. Also plan to use Docutils.
But beyond those most of the big Python projects I can think of have a
ton of C code which is of no use to me. I don't need to be able to run
it, just going to be compiling to .py files.

Any suggestions?

-Brett


Ilya Etingof's PySNMP package is a pretty large collection of Python
code. See http://pysnmp.sourceforge.net/
Jul 18 '05 #4
Brett C. wrote:
So I am trying to come up with a list of projects I can use to get my
stats from. the stdlib is a no-brainer. Also plan to use Docutils.
But beyond those most of the big Python projects I can think of have a
ton of C code which is of no use to me. I don't need to be able to
run it, just going to be compiling to .py files.


ZOPE/Plone. BitTorrent.

Have a look on SourceForge.

http://sourceforge.net/softwaremap/t...p?form_cat=178

Other than the 10,000 clones of BitTorrent and projects that
use Python very peripherally, there are many appropriate
projects.

My BitPim project has 30,000 lines of Python, 2,500 lines of
description files which are compiled into 41,000 lines of
Python and 500 lines of C/C++. It does GUI stuff, talks on
serial ports to cell phones, has XML-RPC remoting over secure
connections, has installation code, uses external data sources
such as CSV, vCards as well as Outlook, Evolution etc. Consequently
that gives you a nice wide spread of things the code does. If you do
use it, feel free to send me email if you have any questions
or need help. There is also a presentation I did which gives a
good overview:

http://bitpim.org/papers/baypiggies/

Roger


Jul 18 '05 #5
Brett C. wrote:
For my thesis (once the bloody thing stops throwing bugs at me) I am
going to need to collect stats on the frequency that atomic types in
local variables are applied to various opcodes and methods. That means
that I need something to collect stats off of.

So I am trying to come up with a list of projects I can use to get my
stats from. the stdlib is a no-brainer. Also plan to use Docutils.
But beyond those most of the big Python projects I can think of have a
ton of C code which is of no use to me. I don't need to be able to run
it, just going to be compiling to .py files.

Any suggestions?


well, scipy is not pure python (lots of fortran/C), but it does have a lot of
python in it. Given that it's probably a decent representative of typical
scientific code (and scientific use of python is growing fast, see scipy'04),
it might be an interesting addition to your sample.

Best,

f
Jul 18 '05 #6
Brett C. wrote:
For my thesis (once the bloody thing stops throwing bugs at me) I am
going to need to collect stats on the frequency that atomic types in
local variables are applied to various opcodes and methods. That
means that I need something to collect stats off of.

So I am trying to come up with a list of projects I can use to get my
stats from. the stdlib is a no-brainer. Also plan to use Docutils.
But beyond those most of the big Python projects I can think of have a
ton of C code which is of no use to me. I don't need to be able to
run it, just going to be compiling to .py files.

Any suggestions?

-Brett


BoaConstructor
Jul 18 '05 #7
On Mon, 09 Aug 2004 15:01:29 -0700,
"Brett C." <ba*@OCF.Berkel ey.EDU> wrote:
For my thesis (once the bloody thing stops throwing bugs at me) I am
going to need to collect stats on the frequency that atomic types in
local variables are applied to various opcodes and methods. That means
that I need something to collect stats off of. So I am trying to come up with a list of projects I can use to get my
stats from. the stdlib is a no-brainer. Also plan to use Docutils. But
beyond those most of the big Python projects I can think of have a ton
of C code which is of no use to me. I don't need to be able to run it,
just going to be compiling to .py files. Any suggestions?


It's not a project, as such, but how about Python's standard library?

Tons and tons of python code, written by the best python coders around.

Regards,
Dan

--
Dan Sommers
<http://www.tombstoneze ro.net/dan/>
Never play leapfrog with a unicorn.
Jul 18 '05 #8
Troels Therkelsen <t_**********@h otmail.com> wrote in message news:<sl******* *************** **@abattoir.2-10.org>...
In article <ma************ *************** ***********@pyt hon.org>, Brett C. wrote:
[/snipped]

Any suggestions?

yeah, why don't you go to sourcforge and search under python projects,
you'll get a ton
Jul 18 '05 #9
"Brett C." <ba*@OCF.Berkel ey.EDU> wrote in message news:
Any suggestions?


Just a quick thanks to everyone who has responded. I truly
appreciate the help on this! This is why the Python community is just
so damn cool!

And here are some quick answers to some questions that have come up in
the thread...

"Big" is relative; not looking for simple scripts, but otherwise I am
open. No real minimum size or anything.

The projects do not have to be devoid of C; just have enough Python
code to warrant using.

"Popular" is also relative. Since Python is not used here at my
school (Cal Poly SLO), I wanted to also use my thesis as a slight PR
piece within the department. Being able to list big, popular Python
projects would help to show the legitimacy of the language to
professors.

Please suggest only open source projects. While I have no issue with
proprietary projects personally I don't want to have to worry about
what I can and cannot discuss in my thesis.

I personally don't need any more web projects listed. Go for it if
this thread just keeps going, but with the ones listed so far that is
plenty. I would love to get a wide swath of projects so as to make
sure my thesis can't be accused of not being representative of non-web
projects.

Something I should have mentioned in the OP is anything that has a
benchmark is an uber-plus! I am going to end up having to benchmark
some code that I did not gather stats on along with some that I did to
try to show that this was all worth it. Already plan to use pystone
and parrotbench.

Anyway, here is the current list that I have going. Ignore the
question marks; just means I have not decided whether I am definitely
using it or not.

----------------

-----------------------------------
Projects for stat collection
-----------------------------------
+ Stdlib (w/o test)
+ Docutils
+ Twisted?
+ Zope?
* Plone?
+ ReportLab?
+ wxPython?
+ BitTorrent?
+ SpamBayes?
+ Mailman?
+ SiGeFi ?
+ Plucker ?
+ Universal Feed Parser ?
+ Shtoom?
+ Divmod Quotient?
+ MoinMoin?
+ PIL?
+ PySNMP ?
+ scipy ?
+ Boa Constructor ?
+ PythonCard ?
+ OpenGLContext ?
+ PyTable ?

------------------
Benchmarks
------------------
+ pystone
+ parrotbench
Jul 18 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

22
3420
by: Max M | last post by:
There is a story today on Slashdot Open Source Project Management Lessons ====================================== http://developers.slashdot.org/article.pl?sid=03/07/02/1817220&mode=flat&tid=185 "Paul Baranowski takes a moment to reflect on Open Source Project Management in his blog. His reflections are based on the first two years of the Peek-a-booty project." Interesting comments on media coverage,
54
6574
by: Brandon J. Van Every | last post by:
I'm realizing I didn't frame my question well. What's ***TOTALLY COMPELLING*** about Ruby over Python? What makes you jump up in your chair and scream "Wow! Ruby has *that*? That is SO FRICKIN' COOL!!! ***MAN*** that would save me a buttload of work and make my life sooooo much easier!" As opposed to minor differences of this feature here, that feature there. Variations on style are of no interest to me. I'm coming at this from a...
0
1184
by: Cameron Laird | last post by:
QOTW: "Python may be one of the simplest and most flexible programming languages out there, but it is still a programming language. It still has syntax, datatypes, and the occasional dark corner inhabited by sorcerers named Tim." Mark Lutz http://www.onlamp.com/pub/a/python/2004/02/05/learn python.html "I think PyChecker ( http://pychecker.sf.net/ ) should be mentioned in every beginner tutorial, and should be integrated with every...
12
1820
by: John Burton | last post by:
One of the reasons I like python so much is that the standard installation comes with a whole lot of libraries to do lots of useful things but there seem to be a few things missing from the standard library which would be useful in many projects: Encryption - AES and 3DES. Possibly RSA and Certificate processing. DNS - Something better than gethostbyaddr for looking up other record types. Database - Something suitable for small projects...
9
2423
by: limor | last post by:
Hi, I am considering using Python in a new testing tool application we intend to build for out product. I must get references before starting develope in this language , since although lots of good things are said about this language , I still have my doubts how can it compete with languages like C++ and Java. I have found te sytax and some features if the language not as problematic in maintenance prospective (although I keep reading...
36
6396
by: Andrea Griffini | last post by:
I did it. I proposed python as the main language for our next CAD/CAM software because I think that it has all the potential needed for it. I'm not sure yet if the decision will get through, but something I'll need in this case is some experience-based set of rules about how to use python in this context. For example... is defining readonly attributes in classes worth the hassle ? Does duck-typing scale well in complex
59
2526
by: Kevin Walzer | last post by:
From the introduction to PyObjC, the Python-Objective-C bridge on Mac OS X: "As described in Objective-C for PyObjC users the creation of Objective-C objects is a two-stage process. To initialize objects, first call a class method to allocate the memory (typically alloc), and then call an initializer (typically starts with init). Some classes have class methods which perform this behind the scenes, especially classes that create cached,...
0
9275
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9872
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9843
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9713
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8713
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7248
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
1
3805
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3358
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2666
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.