All Projects → 00111000 → Imports In Python

00111000 / Imports In Python

🐍 📄 ✏️ Wrote a guide to help myself better understand how importing works in Python. The guide talks about Regular, Local, Optional, Circular, and Shadowed imports. The guide also covers how to import from Packages with or without the __init__.py file.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Imports In Python

Vim Galore
🎓 All things Vim!
Stars: ✭ 12,610 (+6866.85%)
Mutual labels:  guide
Hackthebox
Notes Taken for HTB Machines & InfoSec Community.
Stars: ✭ 167 (-7.73%)
Mutual labels:  guide
Docker Workshop
Docker workshop
Stars: ✭ 174 (-3.87%)
Mutual labels:  guide
Pharo Wiki
Wiki related to the Pharo programming language and environment.
Stars: ✭ 161 (-11.05%)
Mutual labels:  guide
Overvue
Prototyping Tool For Vue Devs 适用于Vue的原型工具
Stars: ✭ 2,108 (+1064.64%)
Mutual labels:  hierarchy
Java Telegram Bot Tutorial
Java Telegram Bot Tutorial. Feel free to submit issue if you found a mistake.
Stars: ✭ 165 (-8.84%)
Mutual labels:  guide
Rakuguide
The Raku Guide
Stars: ✭ 155 (-14.36%)
Mutual labels:  guide
React Redux Typescript Realworld App
RealWorld App implementation based on "react-redux-typescript-guide"
Stars: ✭ 178 (-1.66%)
Mutual labels:  guide
Php Formatter
PHP Formatter is a PHP developer friendly set of tools
Stars: ✭ 163 (-9.94%)
Mutual labels:  namespace
Fe Performance Journey
🚵 a Journey of Performance Optimizing in Frontend 🚀
Stars: ✭ 169 (-6.63%)
Mutual labels:  guide
Fe
《我的职业是前端工程师》 - Ebook:I'm a FrontEnd Developer
Stars: ✭ 1,970 (+988.4%)
Mutual labels:  guide
Go Advice
List of advice and tricks for Go ʕ◔ϖ◔ʔ
Stars: ✭ 2,233 (+1133.7%)
Mutual labels:  guide
Cehv10 Notes
📕 Both personal and public notes for EC-Council's CEHv10 312-50, because its thousands of pages/slides of boredom, and a braindump to many
Stars: ✭ 170 (-6.08%)
Mutual labels:  guide
Scala Whats That Called
What do you call that?... for Scala
Stars: ✭ 160 (-11.6%)
Mutual labels:  guide
Guideview
A guideView implements using the DialogFragment
Stars: ✭ 176 (-2.76%)
Mutual labels:  guide
Restful Api With Laravel Definitive Guide
Repository with the base code for the course "RESTful API with Laravel - Definitive-Guide"
Stars: ✭ 156 (-13.81%)
Mutual labels:  guide
An Idiots Guide To Installing Arch On A Lenovo Carbon X1 Gen 6
so you wanted to install arch huh
Stars: ✭ 165 (-8.84%)
Mutual labels:  guide
Easyguideview
Android app新手引导,任意View高亮提示,简单易用
Stars: ✭ 178 (-1.66%)
Mutual labels:  guide
Ado guideview
Stars: ✭ 176 (-2.76%)
Mutual labels:  guide
Interview
Everything you need to prepare for your technical interview
Stars: ✭ 14,788 (+8070.17%)
Mutual labels:  guide

Imports in Python

Prerequisites

Namespace

For example, you might be writing some code that has a function called fun() and there is another module available, which also has a function with the name fun(). Now the interpreter has no way of knowing which version of fun() function you are referring within your code.

Namespace is designed to overcome this difficulty and is used to differentiate functions, classes, variables etc. with the same name, available in different modules.

Module vs. Package

A Python module is simply a Python source file, which can expose classes, functions and global variables. When imported from another Python source file, the file name is sometimes treated as a namespace.

A Python package is simply a directory of Python module(s).

__init__.py

The __init__.py file is the first thing that gets executed when a package is loaded.

More on the __init__.py file in the Packages (with the __init__.py file) and Relative Imports section.

Relative vs. Absolute Imports

Relative imports - specific location of the modules to be imported are relative to the current package.

Absolute imports - an import where you fully specify the location of the entities being imported.

Regular Imports

Assume the following file structure.

someDir/
	main.py
	siblingModule.py

The following shows different ways to import the module siblingModule.py into main.py.

# siblingModule.py

def siblingModuleFun():
	print('Hello from siblingModuleFun')
	
def siblingModuleFunTwo():
	print('Hello from siblingModuleFunTwo')
# main.py

# Provides access to all exposed functions, global variables, classes, etc.
# We need to specify the namespace explicitly, hence we always have to prepend the module name.
# Since we are not using the current files namespace, it allows us to have multiple function with the same name, from different modules.
import siblingModule

siblingModule.siblingModuleFun() # Hello from siblingModuleFun
siblingModule.siblingModuleFunTwo() # Hello from siblingModuleFunTwo

# If siblingModule is already defined in current namespace, we can use the 'as' keyword to give the module a different namespace identifier.
import siblingModule as sibMod

sibMod.siblingModuleFun() # Hello from siblingModuleFun
sibMod.siblingModuleFunTwo() # Hello from siblingModuleFunTwo

# Only imports specific entities from a module.
# Allows to access the entity without prepending module name.
# But the downside is that we are allowed to overwrite (not override) the function name and we cannot use the module name to help as reach the function.
from siblingModule import siblingModuleFun

siblingModuleFun() # Hello from siblingModuleFun

siblingModuleFunTwo() # Error
siblingModule.siblingModuleFunTwo() # Error

# Both 'from siblingModule import *' and 'import siblingModule' import all entities from the module.
# With 'import siblingModule' you are allowed to have multiple function with the same name, from different modules.
# With 'from siblingModule import *' the functions with the same name will overwrite any function from the imported module(s).
from siblingModule import *

siblingModuleFun() # Hello from siblingModuleFun
siblingModuleFunTwo() # Hello from siblingModuleFunTwo

Local Imports

Importing modules at the top of the script, is importing the module into the global scope, which means that any functions will be able to use it.

A local import is when you import a module into local scope, which means that it exists only within the block that it was loaded in.

import globalModule  # Global scope
 
def funOne(a):

    # Local scope
    import localModule
    
    globalModule.someFunction()
    return localModule.someFunction()

def funTwo():

	globalModule.someFunction()
	return localModule.someFunction() # Error

globalModule.someFunction()

Optional Imports

Optional imports are used when you have a preferred module or package that you want to use, but you also want a fallback in case it something goes wrong.

You might use optional imports to support multiple operating system, resolve issues between different versions, etc.

try:
    # Import 'someModuleA' that is only available in Windows
    import someModuleA
except ImportError:
    try:
	    # Import 'someModuleB' that is only available in Linux
        import someModuleB
    except ImportError:

Circular Imports

Circular imports happen when you create two modules that import each other.

# A.py

import B
 
def Afun():
	print('Hello from Afun')
	
B.Bfun()
Afun()
# B.py

import A
 
def Bfun():
	print('Hello from Bfun')
	
A.Afun()
Bfun()

If you run either of these modules, you should receive an AttributeError. This happens because both modules are attempting to import each other. Basically what’s happening here is that A.py is trying to import B.py, but it can’t do that because B.py is attempting to import A.py, which is already being executed. To prevent this kind of thing from happening, refactor your code.

Shadowed imports

Shadow imports happen when the programmer creates a module with the same name as a standard Python module.

In this case, create a file named math.py and put the following code inside it:

import math

def square_root(number):
	return math.sqrt(number)
	
square_root(72)

When you run a Python script, the first place Python looks for a module called math is in the currently running script’s directory. In this case, it finds the module we’re running and tries to use that. But our module doesn’t have a function or attribute called sqrt, so an AttributeError is raised.

Packages (without the __init__.py file)

Assume the following file structure.

someDir/
	main.py
	subModules/
		subA.py
		subSubModules/
			subSubA.py
# subA.py

def subAFun():
	print('Hello from subAFun')
	
def subAFunTwo():
	print('Hello from subAFunTwo')
# subSubA.py

def subSubAFun():
	print('Hello from subSubAFun')
	
def subSubAFunTwo():
	print('Hello from subSubAFunTwo')
# main.py

# Provides access to all exposed functions, global variables, public classes, etc. in a module 'subA'.
# We need to specify the namespace explicitly, hence we have to prepend the package name and/or module name.
# Since we are not using the current files namespace, it allows us to have multiple function with the same name, from different modules/packages.
import subModules.subA

subModules.subA.subAFun() # Hello from subAFun
subModules.subA.subAFunTwo() # Hello from subAFunTwo

# Only imports specific entities from a module.
# Allows to access the entity without prepending module name.
# But the downside is that we are allowed to overwrite (not override) the function name and we cannot use the module/package name to help as reach the function.
from subModules.subA import subAFun

subAFun() # Hello from subAFun
subAFunTwo() # Error

# To me, this is the most clear way of import modules from subdirectories, and it allows to differentiate between namespaces.
from subModules import subA

subA.subAFun() # Hello from subAFun
subA.subAFunTwo() # Hello from subAFunTwo
# Importing all entities from a sub-submodule.
import subModules.subSubModules.subSubA

subModules.subSubModules.subSubA.subSubAFun() # Hello from subSubAFun
subModules.subSubModules.subSubA.subSubAFunTwo() # Hello from subSubAFunTwo

# Importing a specific entity from a sub-submodule.
from subModules.subSubModules.subSubA import subSubAFun

subSubAFun() # Hello from subSubAFun
subSubAFunTwo() # Error

# Imports all entities.
# Allows to differentiate between namespaces.
from subModules.subSubModules import subSubA

subSubA.subSubAFun() # Hello from subSubAFun
subSubA.subSubAFunTwo() # Hello from subSubAFunTwo

Packages (with the __init__.py file) and Relative Imports

__init__.py

There are two main reasons for using the __init__.py file.

  1. For convenience, other users will not need to know your module's exact location in the package hierarchy.

    someDir/
    	__init__.py
    	A.py
    	B.py
    	...
    	Z.py
    
    # A.py
    
    def add(x, y):
    	return x + y
    
    # __init__.py
    
    from A import *
    from B import *
    ...
    from Z import *
    

    Then others can call add(x, y) , without knowing A.py exists

    from someDir import add
    

    Without __init__.py

    from someDir.A import add
    
  2. If you want something to be initialized as soon as the package gets executed.

Relative Imports

Note that relative imports are not specific to __init__.py files.

'__main__' is the name of the scope in which top-level code executes. A module’s__name__ variable is set to '__main__' when read from standard input, a script, or from an interactive prompt.

Relative imports use the module's __name__ variable to determine where it is in a package. When you use a relative import, such as from ..someDir import someModule, the two dots indicate to step up a level in the package hierarchy. For instance, if your current module is moduleA, then it's __name__ variable is someDir.subDir.moduleA. Then, writing from ..moduleB import * in moduleA means, go up a directory, and import everything from moduleB. moduleB would be found on the same level as the subDir directory.

However, if your module's name is __main__, you cannot use from ..somePath import moduleName statements.

Loading Modules with the Help of the init.py File

Assume the following file structure.

someDir/
	main.py
	subModules/
		__init__.py
		subA.py
		subSubModules/
			__init__.py
			subSubA.py
# subA.py

def subAFun():
	print('Hello from subAFun')
	
def subAFunTwo():
	print('Hello from subAFunTwo')
# subSubA.py

def subSubAFun():
	print('Hello from subSubAFun')
	
def subSubAFunTwo():
	print('Hello from subSubAFunTwo')
# __init__.py from subDir

# Adds 'subAFun()' and 'subAFunTwo()' to the 'subDir' namespace 
from .subA import *

# The following two import statement do the same thing, they add 'subSubAFun()' and 'subSubAFunTwo()' to the 'subDir' namespace. The first one assumes '__init__.py' is empty in 'subSubDir', and the second one, assumes '__init__.py' in 'subSubDir' contains 'from .subSubA import *'.

# Assumes '__init__.py' is empty in 'subSubDir'
# Adds 'subSubAFun()' and 'subSubAFunTwo()' to the 'subDir' namespace
from .subSubDir.subSubA import *

# Assumes '__init__.py' in 'subSubDir' has 'from .subSubA import *'
# Adds 'subSubAFun()' and 'subSubAFunTwo()' to the 'subDir' namespace
from .subSubDir import *
# __init__.py from subSubDir

# Adds 'subSubAFun()' and 'subSubAFunTwo()' to the 'subSubDir' namespace
from .subSubA import *
# main.py

import subDir

subDir.subAFun() # Hello from subAFun
subDir.subAFunTwo() # Hello from subAFunTwo
subDir.subSubAFun() # Hello from subSubAFun
subDir.subSubAFunTwo() # Hello from subSubAFunTwo

From the above, we can observe that it's almost as though __init__.py converts a package into a module, or more correctly makes a package behave like a module.

To access functions of subA.py in subSubA.py. Only works if the __name__ variable of subSubA.py is not '__main__'

# subSubA.py

from ..subA import *

subAFun() # Hello from subAFun
subAFunTwo() # Hello from subAFunTwo
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].