Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
When are imports loaded?
#3
But in terms of timing, the module is not loaded until the import statement. If bar.py was instead:

# bar.py

def bar_func():
    print(f'I am bar,hello also to <{foo.foo_func()}>')

bar_func()

import foo
You would get a name error when you tried tried to call bar_func, because foo is not loaded at that point.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
When are imports loaded? - by MuntyScruntfundle - Feb-10-2019, 12:54 PM
RE: When are imports loaded? - by snippsat - Feb-10-2019, 01:40 PM
RE: When are imports loaded? - by ichabod801 - Feb-10-2019, 03:47 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Is Matplotlib.pyplot Loaded DaveG 2 1,331 Apr-06-2022, 06:12 AM
Last Post: DaveG
  Imports that work with Python 3.8 fail with 3.9 and 3.10 4slam 1 2,602 Mar-11-2022, 01:50 PM
Last Post: snippsat
  Package cannot be loaded into PBS queue file emersonpl 1 1,840 Sep-09-2021, 08:06 PM
Last Post: emersonpl
  PyQt5 MySQL Drivers Not Loaded AdeS 7 5,088 Aug-06-2021, 08:34 AM
Last Post: AdeS
  Imports in my first package cuppajoeman 1 1,966 Jun-28-2021, 09:06 AM
Last Post: snippsat
  script with imports works but pytest gives "ModuleNotFoundError"? Hpao 0 1,576 Jun-27-2021, 08:30 PM
Last Post: Hpao
  Help wanted with python imports petros21 3 2,573 Apr-07-2021, 07:16 PM
Last Post: snippsat
Question How to include Modules not found (conditional imports) in my setup.py when I want to cff 0 3,834 Mar-17-2021, 11:57 AM
Last Post: cff
  MacOS BigSur Python3 - dyld: Library not loaded: trillionanswers 1 4,221 Mar-02-2021, 11:00 PM
Last Post: nilamo
  Why is mpl_toolkits loaded? Gribouillis 1 1,621 Jan-30-2021, 08:39 PM
Last Post: Serafim

Forum Jump:

User Panel Messages

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