[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

pydepend (checking dependencies like jdepend) ?

Bernhard Merkle

1/4/2008 12:14:00 PM

Hi there,

think %Subject says all.

I am wondering if there is some tool to check dependencies within
python programs.
(something like jdepend for python ;-)

Of course the dependencies are at runtime (dynamic) and not statically
+dynamically (as in Java), but anyway it would be interesting to know
of them (for better modularization e.g.)

TIA, Berni.
4 Answers

Stefan Schukat

1/4/2008 12:58:00 PM

0

Hi,

try to look at py2exe. This module scans all dependencies to pack them
into one executable.

Stefan

-----Original Message-----
From: python-list-bounces+sschukat=dspace.de@python.org
[mailto:python-list-bounces+sschukat=dspace.de@python.org] On Behalf Of
Bernhard Merkle
Sent: Friday, January 04, 2008 1:14 PM
To: python-list@python.org
Subject: pydepend (checking dependencies like jdepend) ?


Hi there,

think %Subject says all.

I am wondering if there is some tool to check dependencies within python
programs.
(something like jdepend for python ;-)

Of course the dependencies are at runtime (dynamic) and not statically
+dynamically (as in Java), but anyway it would be interesting to know
of them (for better modularization e.g.)

TIA, Berni.
--
http://mail.python.org/mailman/listinfo/p...

Bernhard Merkle

1/4/2008 1:25:00 PM

0

On Jan 4, 1:57 pm, "Stefan Schukat" <SSchu...@dspace.de> wrote:
> Hi,
>
> try to look at py2exe. This module scans all dependencies to pack them
> into one executable.

my intention is to _know_ (or display or list or whatever) the
dependencies.
(see also my original posting).
The aim is to control and have a view on modularization and e.g. avoid
unnecessary bidirectional dependencies etc.

does py2.exe display such information ?

Berni.

Stefan Schukat

1/4/2008 1:51:00 PM

0

No, py2exe does not display such information but has an algorithm to
collect such information.
Perhaps this is a starting point for you.

Stefan


-----Original Message-----
From: python-list-bounces+sschukat=dspace.de@python.org
[mailto:python-list-bounces+sschukat=dspace.de@python.org] On Behalf Of
Bernhard Merkle
Sent: Friday, January 04, 2008 2:25 PM
To: python-list@python.org
Subject: Re: pydepend (checking dependencies like jdepend) ?


On Jan 4, 1:57 pm, "Stefan Schukat" <SSchu...@dspace.de> wrote:
> Hi,
>
> try to look at py2exe. This module scans all dependencies to pack them

> into one executable.

my intention is to _know_ (or display or list or whatever) the
dependencies.
(see also my original posting).
The aim is to control and have a view on modularization and e.g. avoid
unnecessary bidirectional dependencies etc.

does py2.exe display such information ?

Berni.
--
http://mail.python.org/mailman/listinfo/p...

Thomas Heller

1/4/2008 2:12:00 PM

0

Stefan Schukat schrieb:
> No, py2exe does not display such information but has an algorithm to
> collect such information.
> Perhaps this is a starting point for you.

If py2exe is run with the -x flag, it does display a cross-reference
in a browser window.

Thomas