Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   Re: find out whether a module exists (without importing it) (http://www.velocityreviews.com/forums/t949207-re-find-out-whether-a-module-exists-without-importing-it.html)

Peter Otten 08-07-2012 08:27 AM

Re: find out whether a module exists (without importing it)
 
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.



All times are GMT. The time now is 05:54 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57