Python import within and outside packageCalling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?Does Python have a ternary conditional operator?How to get the current time in PythonHow to upgrade all Python packages with pip?Does Python have a string 'contains' substring method?How to import an SQL file using the command line in MySQL?
Testing using real data of the customer
How does the Earth's center produce heat?
What weight should be given to writers groups critiques?
Is there an idiom that means that you are in a very strong negotiation position in a negotiation?
Are cells guaranteed to get at least one mitochondrion when they divide?
Can we assume that a hash function with high collision resistance also means highly uniform distribution?
How to politely tell someone they did not hit reply all in email?
Is this homebrew "Cactus Grenade" cantrip balanced?
Does an eye for an eye mean monetary compensation?
What did the 'turbo' button actually do?
Cardio work for Muay Thai fighters
What would prevent living skin from being a good conductor for magic?
Can a ring of spell storing and access to Find spells produce an endless menagerie?
Why did it take so long for Germany to allow electric scooters / e-rollers on the roads?
Removing the last element of a list
What is the use case for non-breathable waterproof pants?
Why did Jon Snow admit his fault in S08E06?
What is the recommended procedure to land a taildragger in a crosswind?
Is there a simple example that empirical evidence is misleading?
How to keep consistency across the application architecture as a team grows?
The Maltese Falcon
Has Ursula Le Guin ever admitted to be influenced by Kibbutz for the Dispossessed?
Security vulnerabilities of POST over SSL
How was Daenerys able to legitimise Gendry?
Python import within and outside package
Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?Does Python have a ternary conditional operator?How to get the current time in PythonHow to upgrade all Python packages with pip?Does Python have a string 'contains' substring method?How to import an SQL file using the command line in MySQL?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
This is my situation. I have the following directory structure:
$ls -R .:
driver.py package
./package:
dependent.py __init__.py standalone.py
driver.py:
#!/usr/bin/env python
from package.dependent import add_n
if __name__=='__main__':
print(add_n(2,2))
dependent.py:
#!/usr/bin/env python
from standalone import add_1
def add_n(x, n):
for _ in range(n):
x = add_1(x)
return x
standalone.py:
#!/usr/bin/env python
def add_1(x):
return x+1
Now depending on my use case, I want to run dependent.py
directly or import it into driver.py
. This is the problem I'm facing:
- Running
dependent.py
only works if there is not a dot when importingadd_1
. If there is one, it throws the following error:
Traceback (most recent call last):
File "dependent.py", line 3, in <module>
from .standalone import add_1
ModuleNotFoundError: No module named '__main__.standalone'; '__main__' is not a package
- Running
package.py
only works if there is a dot when importingadd_1
. If there is not one, it throws the following error:
Traceback (most recent call last):
File "driver.py", line 3, in <module>
from package.dependent import add_n
File "/home/su0/scratch/package/dependent.py", line 3, in <module>
from standalone import add_1
ModuleNotFoundError: No module named 'standalone'
I want both scenarios to work. This is because, in the real project, there are dependencies within the package that import other modules. And I want to be able to import it as a package as well. Any help is appreciated.
Thanks.
python python-3.x import
add a comment |
This is my situation. I have the following directory structure:
$ls -R .:
driver.py package
./package:
dependent.py __init__.py standalone.py
driver.py:
#!/usr/bin/env python
from package.dependent import add_n
if __name__=='__main__':
print(add_n(2,2))
dependent.py:
#!/usr/bin/env python
from standalone import add_1
def add_n(x, n):
for _ in range(n):
x = add_1(x)
return x
standalone.py:
#!/usr/bin/env python
def add_1(x):
return x+1
Now depending on my use case, I want to run dependent.py
directly or import it into driver.py
. This is the problem I'm facing:
- Running
dependent.py
only works if there is not a dot when importingadd_1
. If there is one, it throws the following error:
Traceback (most recent call last):
File "dependent.py", line 3, in <module>
from .standalone import add_1
ModuleNotFoundError: No module named '__main__.standalone'; '__main__' is not a package
- Running
package.py
only works if there is a dot when importingadd_1
. If there is not one, it throws the following error:
Traceback (most recent call last):
File "driver.py", line 3, in <module>
from package.dependent import add_n
File "/home/su0/scratch/package/dependent.py", line 3, in <module>
from standalone import add_1
ModuleNotFoundError: No module named 'standalone'
I want both scenarios to work. This is because, in the real project, there are dependencies within the package that import other modules. And I want to be able to import it as a package as well. Any help is appreciated.
Thanks.
python python-3.x import
What ispwd
in this case?
– Joel Cornett
Mar 24 at 0:02
I'm sorry I don't understand. It's just some directory (a directory in my home).
– shaun
Mar 24 at 2:15
add a comment |
This is my situation. I have the following directory structure:
$ls -R .:
driver.py package
./package:
dependent.py __init__.py standalone.py
driver.py:
#!/usr/bin/env python
from package.dependent import add_n
if __name__=='__main__':
print(add_n(2,2))
dependent.py:
#!/usr/bin/env python
from standalone import add_1
def add_n(x, n):
for _ in range(n):
x = add_1(x)
return x
standalone.py:
#!/usr/bin/env python
def add_1(x):
return x+1
Now depending on my use case, I want to run dependent.py
directly or import it into driver.py
. This is the problem I'm facing:
- Running
dependent.py
only works if there is not a dot when importingadd_1
. If there is one, it throws the following error:
Traceback (most recent call last):
File "dependent.py", line 3, in <module>
from .standalone import add_1
ModuleNotFoundError: No module named '__main__.standalone'; '__main__' is not a package
- Running
package.py
only works if there is a dot when importingadd_1
. If there is not one, it throws the following error:
Traceback (most recent call last):
File "driver.py", line 3, in <module>
from package.dependent import add_n
File "/home/su0/scratch/package/dependent.py", line 3, in <module>
from standalone import add_1
ModuleNotFoundError: No module named 'standalone'
I want both scenarios to work. This is because, in the real project, there are dependencies within the package that import other modules. And I want to be able to import it as a package as well. Any help is appreciated.
Thanks.
python python-3.x import
This is my situation. I have the following directory structure:
$ls -R .:
driver.py package
./package:
dependent.py __init__.py standalone.py
driver.py:
#!/usr/bin/env python
from package.dependent import add_n
if __name__=='__main__':
print(add_n(2,2))
dependent.py:
#!/usr/bin/env python
from standalone import add_1
def add_n(x, n):
for _ in range(n):
x = add_1(x)
return x
standalone.py:
#!/usr/bin/env python
def add_1(x):
return x+1
Now depending on my use case, I want to run dependent.py
directly or import it into driver.py
. This is the problem I'm facing:
- Running
dependent.py
only works if there is not a dot when importingadd_1
. If there is one, it throws the following error:
Traceback (most recent call last):
File "dependent.py", line 3, in <module>
from .standalone import add_1
ModuleNotFoundError: No module named '__main__.standalone'; '__main__' is not a package
- Running
package.py
only works if there is a dot when importingadd_1
. If there is not one, it throws the following error:
Traceback (most recent call last):
File "driver.py", line 3, in <module>
from package.dependent import add_n
File "/home/su0/scratch/package/dependent.py", line 3, in <module>
from standalone import add_1
ModuleNotFoundError: No module named 'standalone'
I want both scenarios to work. This is because, in the real project, there are dependencies within the package that import other modules. And I want to be able to import it as a package as well. Any help is appreciated.
Thanks.
python python-3.x import
python python-3.x import
edited Mar 23 at 23:51
Aran-Fey
20.8k54180
20.8k54180
asked Mar 23 at 23:30
shaunshaun
140419
140419
What ispwd
in this case?
– Joel Cornett
Mar 24 at 0:02
I'm sorry I don't understand. It's just some directory (a directory in my home).
– shaun
Mar 24 at 2:15
add a comment |
What ispwd
in this case?
– Joel Cornett
Mar 24 at 0:02
I'm sorry I don't understand. It's just some directory (a directory in my home).
– shaun
Mar 24 at 2:15
What is
pwd
in this case?– Joel Cornett
Mar 24 at 0:02
What is
pwd
in this case?– Joel Cornett
Mar 24 at 0:02
I'm sorry I don't understand. It's just some directory (a directory in my home).
– shaun
Mar 24 at 2:15
I'm sorry I don't understand. It's just some directory (a directory in my home).
– shaun
Mar 24 at 2:15
add a comment |
1 Answer
1
active
oldest
votes
The best would be to really package the code and then use absolute imports in dependent.py
. As a workaround you can however use one of the following options:
Extend the path in driver.py
Before the import package.dependent
you can add the following lines:
import sys
sys.path.append('package')
Then use the undotted import statement in dependent.py
. This works since now package
is on the path to be searched for modules, including standalone.py
.
Use conditional imports in dependent.py
You can modify the imports in dependent.py
as follows:
if __name__ == '__main__':
from standalone import ...
else:
from .standalone import ...
Does the conditional import go at the very top to replace the original import statement?
– shaun
Mar 24 at 2:18
Yes it needs to replace the original one. It can go anywhere but obviously has to be executed before you attempt to use the imported function. Anyway I'd rather use option 1 (package the code) or option 2 (extendingsys.path
); option 3 (conditional import) implies thatdependent.py
"knows" that it's going to be imported somewhere else, but then you could just put the code in a separate module anyway.
– a_guest
Mar 24 at 11:42
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55319336%2fpython-import-within-and-outside-package%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The best would be to really package the code and then use absolute imports in dependent.py
. As a workaround you can however use one of the following options:
Extend the path in driver.py
Before the import package.dependent
you can add the following lines:
import sys
sys.path.append('package')
Then use the undotted import statement in dependent.py
. This works since now package
is on the path to be searched for modules, including standalone.py
.
Use conditional imports in dependent.py
You can modify the imports in dependent.py
as follows:
if __name__ == '__main__':
from standalone import ...
else:
from .standalone import ...
Does the conditional import go at the very top to replace the original import statement?
– shaun
Mar 24 at 2:18
Yes it needs to replace the original one. It can go anywhere but obviously has to be executed before you attempt to use the imported function. Anyway I'd rather use option 1 (package the code) or option 2 (extendingsys.path
); option 3 (conditional import) implies thatdependent.py
"knows" that it's going to be imported somewhere else, but then you could just put the code in a separate module anyway.
– a_guest
Mar 24 at 11:42
add a comment |
The best would be to really package the code and then use absolute imports in dependent.py
. As a workaround you can however use one of the following options:
Extend the path in driver.py
Before the import package.dependent
you can add the following lines:
import sys
sys.path.append('package')
Then use the undotted import statement in dependent.py
. This works since now package
is on the path to be searched for modules, including standalone.py
.
Use conditional imports in dependent.py
You can modify the imports in dependent.py
as follows:
if __name__ == '__main__':
from standalone import ...
else:
from .standalone import ...
Does the conditional import go at the very top to replace the original import statement?
– shaun
Mar 24 at 2:18
Yes it needs to replace the original one. It can go anywhere but obviously has to be executed before you attempt to use the imported function. Anyway I'd rather use option 1 (package the code) or option 2 (extendingsys.path
); option 3 (conditional import) implies thatdependent.py
"knows" that it's going to be imported somewhere else, but then you could just put the code in a separate module anyway.
– a_guest
Mar 24 at 11:42
add a comment |
The best would be to really package the code and then use absolute imports in dependent.py
. As a workaround you can however use one of the following options:
Extend the path in driver.py
Before the import package.dependent
you can add the following lines:
import sys
sys.path.append('package')
Then use the undotted import statement in dependent.py
. This works since now package
is on the path to be searched for modules, including standalone.py
.
Use conditional imports in dependent.py
You can modify the imports in dependent.py
as follows:
if __name__ == '__main__':
from standalone import ...
else:
from .standalone import ...
The best would be to really package the code and then use absolute imports in dependent.py
. As a workaround you can however use one of the following options:
Extend the path in driver.py
Before the import package.dependent
you can add the following lines:
import sys
sys.path.append('package')
Then use the undotted import statement in dependent.py
. This works since now package
is on the path to be searched for modules, including standalone.py
.
Use conditional imports in dependent.py
You can modify the imports in dependent.py
as follows:
if __name__ == '__main__':
from standalone import ...
else:
from .standalone import ...
answered Mar 23 at 23:58
a_guesta_guest
7,77831446
7,77831446
Does the conditional import go at the very top to replace the original import statement?
– shaun
Mar 24 at 2:18
Yes it needs to replace the original one. It can go anywhere but obviously has to be executed before you attempt to use the imported function. Anyway I'd rather use option 1 (package the code) or option 2 (extendingsys.path
); option 3 (conditional import) implies thatdependent.py
"knows" that it's going to be imported somewhere else, but then you could just put the code in a separate module anyway.
– a_guest
Mar 24 at 11:42
add a comment |
Does the conditional import go at the very top to replace the original import statement?
– shaun
Mar 24 at 2:18
Yes it needs to replace the original one. It can go anywhere but obviously has to be executed before you attempt to use the imported function. Anyway I'd rather use option 1 (package the code) or option 2 (extendingsys.path
); option 3 (conditional import) implies thatdependent.py
"knows" that it's going to be imported somewhere else, but then you could just put the code in a separate module anyway.
– a_guest
Mar 24 at 11:42
Does the conditional import go at the very top to replace the original import statement?
– shaun
Mar 24 at 2:18
Does the conditional import go at the very top to replace the original import statement?
– shaun
Mar 24 at 2:18
Yes it needs to replace the original one. It can go anywhere but obviously has to be executed before you attempt to use the imported function. Anyway I'd rather use option 1 (package the code) or option 2 (extending
sys.path
); option 3 (conditional import) implies that dependent.py
"knows" that it's going to be imported somewhere else, but then you could just put the code in a separate module anyway.– a_guest
Mar 24 at 11:42
Yes it needs to replace the original one. It can go anywhere but obviously has to be executed before you attempt to use the imported function. Anyway I'd rather use option 1 (package the code) or option 2 (extending
sys.path
); option 3 (conditional import) implies that dependent.py
"knows" that it's going to be imported somewhere else, but then you could just put the code in a separate module anyway.– a_guest
Mar 24 at 11:42
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55319336%2fpython-import-within-and-outside-package%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is
pwd
in this case?– Joel Cornett
Mar 24 at 0:02
I'm sorry I don't understand. It's just some directory (a directory in my home).
– shaun
Mar 24 at 2:15