Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #26693

Re: find out whether a module exists (without importing it)

From Peter Otten <__peter__@web.de>
Subject Re: find out whether a module exists (without importing it)
Date 2012-08-07 10:27 +0200
Organization None
References <jvpaid$9ia$1@dough.gmane.org>
Newsgroups comp.lang.python
Message-ID <mailman.3046.1344328071.4697.python-list@python.org> (permalink)

Show all headers | View raw


Gelonida N wrote:

> Is this possible.
> 
> let's say I'd like to know whether I could import the module
> 'mypackage.mymodule', meaning,
> whther this module is located somewhere in sys.path
> 
> i tried to use
> 
> imp.find_module(), but
> it didn't find any module name containing a '.'

You could look for the toplevel name and then look for modules in the 
corresponding directory. This is not always reliable as a package may not 
correspond to a directory (e. g.: os and os.path), but I don't think you can 
get any closer without performing an actual import.

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: find out whether a module exists (without importing it) Peter Otten <__peter__@web.de> - 2012-08-07 10:27 +0200

csiph-web