Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
a module to import modules
#4
If you have a folder named "common", and that folder has a file in it named "__init__.py", then you can do import common or from common import *, and the __init__.py will be run.  Inside that file, you can then do all the common importing as a convenience.

Defining __all__ in the top level just determines what, exactly, is imported if you do from common import *, so that import * doesn't HAVE to actually import everything, only the things you actually want exposed outside the module.
Reply


Messages In This Thread
a module to import modules - by Skaperen - Aug-04-2017, 03:59 AM
RE: a module to import modules - by nilamo - Aug-04-2017, 04:23 AM
RE: a module to import modules - by Skaperen - Aug-05-2017, 02:49 AM
RE: a module to import modules - by nilamo - Aug-05-2017, 05:23 PM
RE: a module to import modules - by metulburr - Aug-05-2017, 09:41 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Different Ways to Import Modules RockBlok 2 582 Dec-11-2023, 04:29 PM
Last Post: deanhystad
  is import cointegration_analysis a recognized module mitcht33 1 486 Nov-06-2023, 09:29 PM
Last Post: deanhystad
  problem in import module from other folder akbarza 5 1,602 Sep-01-2023, 07:48 AM
Last Post: Gribouillis
  can not import anaconda pandas module. PySpark pandas module is imported!! aupres 0 760 Aug-06-2023, 01:09 AM
Last Post: aupres
  Import Modules TheBunyip 4 1,302 Mar-10-2023, 04:47 PM
Last Post: buran
  import module error tantony 5 3,587 Dec-15-2022, 01:55 PM
Last Post: Lauraburmrs
  a bunch of modules to import Skaperen 2 935 Nov-07-2022, 07:33 PM
Last Post: Gribouillis
  Import a module one step back of the path prathampatel9 1 1,117 Sep-21-2022, 01:34 PM
Last Post: snippsat
  Import a module for use in type hint? Milosz 0 1,525 Nov-08-2021, 06:49 PM
Last Post: Milosz
  Can't install nor import delorean module Tek 3 2,880 Oct-27-2021, 03:32 AM
Last Post: Tek

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020