Skip to main content

Python Creating your own modules

Creating your own modules in Python is a great way to organize your code into manageable, reusable components. A module is simply a file containing Python definitions and statements. Here’s a step-by-step guide on how to create and use your own modules.

Step 1: Create a Python Module

A module is a Python file with a .py extension. You can define functions, classes, variables, and even include executable code.

Example:

Create a file named mymodule.py and add the following content:

# mymodule.py def greet(name): return f"Hello, {name}!" def add(a, b): return a + b class Person: def __init__(self, name, age): self.name = name self.age = age def display(self): return f"Name: {self.name}, Age: {self.age}"


Step 2: Importing the Module

To use the functions, classes, and variables defined in mymodule.py, you need to import the module in another Python script or an interactive session.

Example:

Create another file named main.py in the same directory and add the following content:

# main.py import mymodule # Using the functions from the module print(mymodule.greet("Alice")) # Output: Hello, Alice! print(mymodule.add(5, 3)) # Output: 8 # Using the class from the module person = mymodule.Person("Bob", 25) print(person.display()) # Output: Name: Bob, Age: 25


Step 3: Using from ... import Syntax

You can also import specific attributes or functions from the module using the from ... import syntax.

Example:

# main.py

from mymodule import greet, add, Person

# Using the imported functions directly
print(greet("Alice"))  # Output: Hello, Alice!
print(add(5, 3))       # Output: 8

# Using the imported class directly
person = Person("Bob", 25)
print(person.display())  # Output: Name: Bob, Age: 25


Step 4: Creating a Package

A package is a way of organizing related modules into a directory hierarchy. A package is a directory that contains a special __init__.py file and can include multiple modules.

Example:

  1. Create a directory named mypackage.
  2. Inside mypackage, create an empty __init__.py file to mark it as a package.
  3. Move mymodule.py into the mypackage directory.
  4. The directory structure should look like this:
mypackage/
    __init__.py
    mymodule.py
main.py

  1. Modify main.py to import from the package:
# main.py from mypackage import mymodule # Using the functions from the module print(mymodule.greet("Alice")) # Output: Hello, Alice! print(mymodule.add(5, 3)) # Output: 8 # Using the class from the module person = mymodule.Person("Bob", 25) print(person.display()) # Output: Name: Bob, Age: 25


Step 5: Importing from a Subpackage

You can further organize your package into subpackages by creating more directories with their own __init__.py files.

Example:

  1. Inside mypackage, create a directory named subpackage.
  2. Inside subpackage, create an empty __init__.py file and another module named mymodule2.py:
mypackage/
    __init__.py
    mymodule.py
    subpackage/
        __init__.py
        mymodule2.py

  1. Add content to mymodule2.py:
# mymodule2.py

def multiply(a, b):
    return a * b

  1. Modify main.py to import from the subpackage:
# main.py

from mypackage import mymodule
from mypackage.subpackage import mymodule2

# Using the functions from the modules
print(mymodule.greet("Alice"))  # Output: Hello, Alice!
print(mymodule.add(5, 3))       # Output: 8
print(mymodule2.multiply(4, 2)) # Output: 8

# Using the class from the module
person = mymodule.Person("Bob", 25)
print(person.display())         # Output: Name: Bob, Age: 25


Summary

  • Modules: Python files with a .py extension containing functions, classes, and variables.
  • Packages: Directories containing an __init__.py file and multiple modules, allowing hierarchical organization.
  • Importing: Use import to import the whole module or from ... import to import specific attributes.

Creating and organizing your code into modules and packages makes it more modular, reusable, and maintainable.

Comments