Python Forum
package script cant find sibling script when executed from outside
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
package script cant find sibling script when executed from outside
#1
Hello together,
i just finished my first own package but facing a problem when importing and executing things from outside:
I made a very minimal example as demonstration:

Folder "mymodule" contains:
#__init__.py
# empty

#constants.py
my_const = 42

#function.py
def my_func():
       print(my_const)
On the same level as mymodule is :
# test.py
from mymodule.function import my_func
my_func()
Unfortunately i get the error message: "no module named 'constant' " which confuses me since i can import constant in function.py properly.

Question: Why is that? ( Maybe this code should that never be necessary - let me know anything you have in mind :)

Thank you very much,
Bock

PS: how can i make a "tab" in the python brackets of the thread editor?
Reply
#2
Please post the error message and the steps required to produce. Also post information about rhe directory structure.
Reply
#3
(Mar-03-2023, 11:12 AM)Bock Wrote: Unfortunately i get the error message: "no module named 'constant' "
According to your post, the module is named 'constants' and not 'constant'. Could this be the error?

You could try a relative import in function.py
from .constants import my_const
Note that 'relative' import means relative to the python packages hierarchy, not the file system's directories tree.
Reply
#4
As you see all files as you describe.
C:\Python310\mymodule
λ ls
__init__.py  constants.py  function.py  test.py 
my_func() will never work have to change to this.
#function.py
from mymodule.constants import my_const

def my_func():
    print(my_const)
Now can run test.py,and it will work.
C:\Python310\mymodule
λ python test.py
42
A little more about how a package works.
C:\Python310\mymodule
λ ptpython
>>> import mymodule
>>>
>>> dir(mymodule)
['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', '__spec__'
As see here so is nothing added to namespace if just import like this.
I like to modify so can just to simple import like this and files are added.
In __init__.py
import mymodule.constants
import mymodule.function
Test again.
C:\Python310\mymodule
λ ptpython
>>> import mymodule
>>>
>>> dir(mymodule)
['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', '__spec__', 'constants', 'function', 'mymodule']

>>> mymodule.constants.my_const
42

>>> mymodule.function.my_func()
42
Or can import like this without modify __init__.py.
This will bring constants and function into the namespace of package.
C:\Python310\mymodule
λ ptpython
>>> from mymodule import constants, function
>>> constants.my_const
42
>>> function.my_func()
42

Some more examples you can look in link in this post.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Running script from remote to server invisiblemind 4 557 Mar-28-2025, 07:57 AM
Last Post: buran
  Insert command line in script lif 4 860 Mar-24-2025, 10:30 PM
Last Post: lif
  modifying a script mackconsult 1 518 Mar-17-2025, 04:13 PM
Last Post: snippsat
  help with a script that adds docstrings and type hints to other scripts rickbunk 2 1,188 Feb-24-2025, 05:12 AM
Last Post: from1991
  MPEG DASH Package implementation similar to M3U8 package anantha_narayanan 0 535 Feb-06-2025, 03:55 AM
Last Post: anantha_narayanan
  Detect if another copy of a script is running from within the script gw1500se 4 1,036 Jan-31-2025, 11:30 PM
Last Post: Skaperen
  pass arguments from bat file to pyhon script from application absolut 2 897 Jan-13-2025, 11:05 AM
Last Post: DeaD_EyE
  Best way to feed python script of a file absolut 6 1,035 Jan-11-2025, 07:03 AM
Last Post: Gribouillis
  How to make it so whatever I input into a script gets outputted on a different file spermatozwario 4 1,083 Nov-24-2024, 12:58 PM
Last Post: deanhystad
  [SOLVED] [Linux] Run Python script through cron? Winfried 2 1,171 Oct-19-2024, 06:29 PM
Last Post: Winfried

Forum Jump:

User Panel Messages

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