init.py file code example
Example 1: python3 import all files in directory
from inspect import isclass
from pkgutil import iter_modules
from pathlib import Path
from importlib import import_module
package_dir = Path(__file__).resolve().parent
for (_, module_name, _) in iter_modules([package_dir]):
module = import_module(f"{__name__}.{module_name}")
for attribute_name in dir(module):
attribute = getattr(module, attribute_name)
if isclass(attribute):
globals()[attribute_name] = attribute
Example 2: init function in python
class Rectangle:
def __init__(self, length, breadth, unit_cost=0):
self.length = length
self.breadth = breadth
self.unit_cost = unit_cost
def get_area(self):
return self.length * self.breadth
def calculate_cost(self):
area = self.get_area()
return area * self.unit_cost
r = Rectangle(160, 120, 2000)
print("Area of Rectangle: %s sq units" % (r.get_area()))
Example 3: python module initialization
import psutil
Example 4: init in python
class Employee():
no_of_leaves = 8
def __init__(self, aname, asalary, arole):
self.name = aname
self.salary = asalary
self.role = arole
def printdetail(self):
return f"Name is {self.name}. His salary is {self.salary}." \
f"and his role is {self.role}"
Example 5: import __init__.py
from . import *
from . import hello_world