python's library support

S

Sean

I am a newbie in python, and I have a feeling that python provides less
library support than perl www.cpan.org This seems a big discussion
topic.

I want to know if there is extensive algorithm library support in
python. I know there is a pretty neat module in perl to implement graph
theory. Is there a graph theory module in python?

Thanks,
 
K

Kirk McDonald

Sean said:
I am a newbie in python, and I have a feeling that python provides less
library support than perl www.cpan.org This seems a big discussion
topic.

I want to know if there is extensive algorithm library support in
python. I know there is a pretty neat module in perl to implement graph
theory. Is there a graph theory module in python?

Thanks,

Python's standard library is actually quite extensive; it's one of the
language's greatest strengths:

http://www.python.org/doc/2.4.2/lib/lib.html

However, it is perhaps true that it is lacking in the raw algorithm
department. On the subject of graphs, a quick Google search brings up
this nice-looking library:

https://networkx.lanl.gov/

For computationally intensive array manipulation, there's always good
ol' numarray:

http://www.stsci.edu/resources/software_hardware/numarray

The standard library can do quite a lot, and if it fails you, there's
more than likely a third-party library available.

-Kirk McDonald
 
R

Robert Kern

Sean said:
I am a newbie in python, and I have a feeling that python provides less
library support than perl www.cpan.org This seems a big discussion
topic.

I want to know if there is extensive algorithm library support in
python. I know there is a pretty neat module in perl to implement graph
theory. Is there a graph theory module in python?

http://networkx.sourceforge.net

And several others if you google a bit.

--
Robert Kern
(e-mail address removed)

"In the fields of hell where the grass grows high
Are the graves of dreams allowed to die."
-- Richard Harter
 
J

John M. Gabriele

Sean said:
I am a newbie in python, and I have a feeling that python provides less
library support than perl www.cpan.org This seems a big discussion
topic.

I want to know if there is extensive algorithm library support in
python. I know there is a pretty neat module in perl to implement graph
theory. Is there a graph theory module in python?

Thanks,

You might have a look around at the cheese shop:

http://cheeseshop.python.org/pypi

---J
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,283
Messages
2,571,405
Members
48,098
Latest member
inno vation

Latest Threads

Top