Sometimes we have to use someone else's code in our program because it saves us a lot of time. Today, we will learn a technique to use code that is not written by us but will enhance the quality of our program, save us time and energy, and of course, it is legal and free.
Let us understand what utilities like modules and pip are,
Module – Module or library is a file that contains definitions of several functions, classes, variables, etc. which is written by someone else for us to use.
Pip – Pip is a package manager for Python i.e., pip command can be used to download any external module in Python. It is something that helps us to get code written by someone else.
We can install a module in our system by using pip command :
- Open cmd or Powershell in your system.
- And then, type pip install module_name and press enter.
- Once you do that, the module will start downloading and will install automatically on your computer.
Example, for installing flask I will do this:
After installing any module in Python, you can import it into your Python program. For example, to use flask, I will type "import flask" at the top of my Python program.
There are two types of modules in Python:
Built-in Modules:
Built-in modules are the modules that are pre-installed in Python i.e., there is no need to download them. These modules come with python interpreter itself. For example :– random, os, etc.
To get a complete list of built-in modules of python head to the following page of the official documentation - https://docs.python.org/3/py-modindex.html.
External Modules:
These are the modules that are not pre-installed in Python i.e., we need to download them before using them in our program. For example :– Flask, Pandas, TensorFlow, etc.
That's all about modules in Python. I hope you are enjoying this course.
Comments
Post a Comment