Modules

A module is a small component or building block of an application. A module consists of variables and functions. With respect to a node application, every file is considered to be a module.
node module system
The variables and functions defined in a module are scoped to that module(or file) only. In order to use the variables and functions of a module, they need to be exported.
Thus, a file named firstprogram.js is a module in node.
[the_ad id=”95″] Benefits of a module
Following are the advantages of a module.
Encapsulation: A module consists of variables and functions written inside a file. These cannot be accessed from another file if they are not exported.
Reusability: A module once written can be easily distributed or imported in another modules. Thus, the functionality written in a module can be re-used in another module when required.
Security: There are two aspects of security when using modules. First, variables and functions written inside a module cannot be accessed or modified if not exported. Second, there is no risk of variables and functions with same name in an application being overwritten since they are distinguished by modules.
[the_ad id=”89″] Node Module object
Node provides a module object which represents a module. This module object is available in every module(or file) and contains information about that module. Thus, create a file named firstprogram.js and print module object using console.log(module). If you are not sure how to do this, check it out here.
You will see the below output.

E:\node>node firstprogram.js
Module {
   id: ‘.’,
   exports: {},
   parent: null,
   filename: ‘E:\\node\\firstprogram.js’,
   loaded: false,
   children: [],
   paths: [ ‘E:\\node\\node_modules’, ‘E:\\node_modules’ ] }

As you can see from the above output, it shows the name of file, its path etc.

Modules

What is a module?

An Angular module is a logical group of components, services, directives and pipes which are related to each other.

Example, consider a library management application. It has an inventory page which shows the list of all books in the library.
This page will have an inventory component to display the page, inventory service to fetch and update data to the server, directives and pipes to format the data.
All these will be a part of a module called InventoryModule(suppose).
A module can have one or more components and services.
A module can import other modules.
There can be one or more modules in a single application.

There will always be at least 1 module in the application called the root module or the appmodule.
[the_ad id=”89″]

Module Syntax
A module is a typescript class which is annotated with @NgModule.
This annotation takes an object of key-value pairs as a parameter which is the metadata of the module.
The metadata declares

  1. All components which are part of this module.
  2. Components exported by this module. External modules which import this module will only be able to use those components which are exported by this module.
  3. Other modules imported by this module. This module will only be able to use those components of the imported modules which, in turn, are exported by them.
  4. Services required by this module. Note that the services declared by a module are available to all the components which are part of this module.

Let’s explore the metadata of a module digging into its structure and possible values.
Following are the keys of the metadata object:

  1. declarations
    An array of all the components, directives and pipes which are part of this module.
    A component, directive or pipe can be declared in only one module
    as no two components or directives can belong to more than 1 module.
    Trying to declare a component in more than 1 module will result in a compiler error.
  2. imports
    An array of other modules which are imported by this module.
    If a module or a component(which is a part of another module) is used in a component of this module, then it should be imported in this array.
    Failing to import the used but not imported component results in an error as if [component-name] is an Angular component , then verify that it is part of this module.
    Remember that a module can also import built in modules of Angular library such as FormsModule, ReactiveFormsModule, RouterModule and many more.
  3. exports
    An array of components, directives and pipes which belong to and are exported by this module so that they can be used by other components belonging to some other components.
    Note that this array can only contain some or all of the members given in the declarations array.
    In other words, members of exports array should be a subset of declarations array.
  4. providers
    An array of the services which are created by this module.
    Services created by this module are available to all the parts of this module.
    When a module which has its own providers is imported by another module, then these providers are available to all the classes of importing module.
    Also note that the services in the providers array of appmodule or root module are available to the entire application.
  5. bootstrap
    This array contains a component which is the main view of the application or becomes the first page when the application is loaded.
    This property is only used in the root or app module.

Example of module syntax is given below.

import { NgModule } from '@angular/core';    
import { ReactiveFormsModule } from '@angular/forms';    
@NgModule({
  declarations: [
    CodippaComponentA,
    CodippaComponentB,
    CodippaDirective,
    CodippaPipe
  ],
  imports: [
    OtherModuleA,
    OtherModuleB,
    ReactiveFormsModule        
  ],
  exports: [
    CodippaComponentB,
    CodippaDirective
  ],
  providers: [
    CodippaServiceA,
    CodippaServiceB
  ]})
export class CodippaModule {
  // module code here    
}

Explanation

Above module is named as CodippaModule and declares that it has 2 components, 1 directive and 1 pipe.
It imports 3 other modules and exports only 1 component out of its 2 components and the directive.
This means that if another module imports this module, then it will only be able to use the exported component and directive.
Note that 1 of the imported modules is ReactiveFormsModule from angular library.
This module import is required if any component in this module creates reactive angular forms.

This module also creates 2 services. These services will be available to all the classes of this module as well as to classes of the module which imports this module.
Since, the module is not the root module, there is no bootstrap key.

Generating a module
A module can be generated automatically using angular-cli using the following command.

ng generate module [module name]

When this command is executed at the command prompt, angular-cli automatically generates the module as shown below.

Module can also be generated using short cut command

ng g m [module name]

where g stands for generate and m stands for module.
A module can also be created manually but in that case, you need to add @NgModule and its associated metadata manually.
When a module is generated using angular-cli, this process is done automatically.

Module Naming Convention
Note the naming convention for a module class and its file.
Class is named as [module name] + “Module”. Hence, CodippaModule
The file is named as per the following convention.

[moduleclass name] – “Module” + “.module.ts”

Thus, file for above module will be named as
CodippaModule “Module” + “module.ts” = codippa.module.ts

Recap

  1. imports array can only contain modules.
  2. Components, directives and pipes can only be declared in 1 module.
    In order to use them in another module or component, you need to import the owning module.
  3. Components, directives and pipes in declarations array will be available to other modules only if they are exported from this module.
  4. There can be more than 1 components in the array of bootstrap key of metadata but is not the recommended way.
  5. A service can also be declared in the providers key of component metadata rather than at the module level.
    In this case, the service will be available to that component only.
  6. declarations array can not contain modules and services, only components.
  7. Always import only those modules whose components, directives or pipes are required by the importing module components.
  8. Root module of a web application should import BrowserModule from @angular/platform-browser.

 

Modules

[the_ad id=”684″]

What is a python module?
Till now we have seen all the code written in a single python file but real applications are made up of multiple python files.

Each python file is called a Module.

This module can be used in other python files of the same application or it can also be used in other applications provided it is available to them.

Writing an application using modules promotes reusability since same code can be used at multiple places.
Each module consists of one or more functions which can be called from other modules which have access to the owner module of those functions.
[the_ad id=”89″]

Practical use of Module
Suppose you have a file which contains some utility functions such as one which reads a text file and returns a list of lines, other which takes a format and returns current date, one which takes a directory path and returns a list of all files in it etc.
Now you need those functions in your code somewhere else, say in some other file.

One way is to copy the functions from that file into your file and then use them.
Another and a more better way is to import that module(or file) into your file and call its functions directly.
This way you can re-use the functions which are already written and save your effort and time.
It might be possible that the module you are importing has been written by some other person working with you.
It might also be possible that the imported module is written by someone you don’t know as it may have been downloaded from the Internet.

Module import
A module before being used needs to be imported. Once a module is imported into another module, its variables and functions can be accessed in the importing module.
A module(or file) is used in another module(or file) using import statement.
import is followed by the name of the file that needs to be imported.

While importing, the .py extension of file is not used.

Import module example

Suppose you have a python file which contains a function that takes a file name, reads its contents and returns a list of lines as shown below

# filereader.py

def read_file(filename):        # define a function
    filehandle = open(filename) # open file
    # read lines and store them in list
    filecontents = filehandle.read().splitlines() 
    filehandle.close()          # close file
    return filecontents         # return list

This function takes a file name as argument, reads its lines into a list and returns it.
Let the name of its file be filereader.py and can also be called a Module.

[the_ad id=”94″] Now you want to develop a program which should read a file and print its contents.
Either you write the file reading code again or use the above module and save your effort.
Let’s name this file as filedisplay.py

# filedisplay.py

import filereader

file_contents = filereader.read_file("f:/fruits.txt")
print(file_contents)

Above code imports filereader and uses its file reading function. Note that the function from the imported module is called using syntax  <modulename>.functionname 

Importing required functions only
Many times only a single function is required from a module.
Thus, it is not necessary to import an entire file(or module) into another file. In such cases, it is also possible to import only selected functions or variables from a file(or module).

To import selected functions from a module, from keyword is used.
Syntax is

from <modulename> import <functionname>
Our previous example can be modified as
# filedisplay.py

from filereader import read_file

file_contents = read_file("f:/fruits.txt")
print(file_contents)

Note that now we are importing only a function from the specified module.
Thus, it is not necessary to prefix module name and dot while calling the function, it can be called directly using its name.
[the_ad id=”95″]

If a file contains a function with same name as imported function and the function is called using its name only, then the function defined in the same file will be called.

If you want to call the function defined in imported module, then use <filename>.<functionname> syntax.

When importing using the from import syntax, only the functions imported will be available.

In order to import all the functions using this syntax, write it as

from <modulename> import *

Importing Variables from Modules
Not only functions, but variables can also be imported from other modules. Example,

# utility.py

CITY_NAMES = ['California', 'Sydney, 'New York', 'London']

# returns square of supplied number
def square(number):
   return number * number;

Above file(utility.py) contains a list of cities and a function which calculates square of a number provided to it.
Now, let’s say, another module wants to use the list of cities, then it will get it as

# user.py

from utility import CITY_NAMES

cities = CITY_NAMES
print(cities)

Using the above syntax, square function will not be available to the importing file, it will have to separately import it.

Module path
In all the examples till now, we directly imported a file into another file.
But where should the files be places relative to each other?
For all the examples above to work, both the files should be placed adjacent to each other as shown below

project
   |— user.py
   |— utility.py

But what if the module(or python file) to be imported is placed in a folder and the module which requires it are not adjacent to each other but at different locations.
Example,

project
   |— user.py
   |— mod
         |— utility.py
Now if user.py wants to access functions of utility.py, then it will import it in a slightly different syntax as below.
# user.py

from mod.utility import CITY_NAMES

cities = CITY_NAMES
print(cities)

Note that it prefixes the folder name followed by a dot(.) before the module name.
In case, if the file utility.py is located in a hierarchy of folders such as A/B/C/utility.py, then it will be imported as

from A.B.C.utility import CITY_NAMES
.
Exit mobile version