-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodule.py
More file actions
50 lines (37 loc) · 2.43 KB
/
Copy pathmodule.py
File metadata and controls
50 lines (37 loc) · 2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# A module is a python file containing variables, functions and classes which can be used by other python scripts.
# using this import style, all exported veriables are stored inside `calculator` name from `calculator.py` file in the current directory
# python module name should be all lowercase letters with optional underscore (https://www.python.org/dev/peps/pep-0008/#package-and-module-names)
import calculator
# When we import a module, python sets `__name__` variable to the module name which is name of the python script file, in this case, `calculator`. If the module file is executed as main file, it will be `__main__`. Using this, we can take some action.
# We can check variables exported by a module using `dir()` function
print( 'dir(calculator) => ', dir(calculator))
# we need to use `.` operator to access variables
print( 'calculator.add(1, 2) => ', calculator.add(1, 2))
# module running in single python thread is initialized only once and cached inside `__pycache__` directory in the directory where module file is present. This directory contains `.pyc` files which are compiled bytecode of the modules you are importing. This will increase the performance as modules are not subjected to change frequently. This directory should not be commited as bytecode is tailored to the OS.
# we can rename a module to avoid collision with other modules or names
import calculator as calc
print( 'calc.version => ', calc.version)
# we can import specific members from a module
# this make sense for classes but not recommended
from calculator import Calculator
myCalc = Calculator(2, 3)
print( 'myCalc.multiply() => ', myCalc.multiply())
# we can also import everything exported by the module in the current namespace (score)
# but this is a bad practice
from calculator import *
print( 'add(2, 5) => ', add(2, 5))
# when we import a module, python first searches for the python files with that name in
# 1. local directory
# 2. Directory defined by PYTHONPATH environment variable (multiple: https://stackoverflow.com/a/39682723)
# 3. Python standard installation directory
# we see list of resolution directory from `sys.path` name
import sys
print("sys.path => ", sys.path)
# as python caches a module, it can reloaded using `importlib` package.
# this can be necessary if module is changed during course of the program execution
import importlib
importlib.reload(calculator)
# conditional importing of module
if True:
import sample
sample.info()