@vinaymavi
Agenda
Module
A module is a piece of software that contains logically separated code.
# Syntax import <mobule_name/package_name> from <module_name/package_name> import <module_name/package_name/other>
#utils.py def print_msg(msg): print msg
# Inside Another Programs import utils utils.print_msg("Hello Team")
Package
A package is folder structure that provide name spacing to modules.
A normal directory that contains __init__.py file called package in python.
__init__.py
How Import Works?
pip
Some useful packages
Virtual Environment
By Vinay Mavi
This slides contains information about package system how it is work and how we can publish packages to pip.
A fullstack developer curious to explore every thing in web development domain.