Python - Package

Card Puncher Data Processing

About

Code Shipping - (Module|Component) in Python

Physically,

  • package are the directories
  • and modules are the files within this directories.

Logically, a package is a module (parent module):

  • which can contain:
    • modules (submodules)
    • and package (subpackages)
  • with an path attribute. (Any module that contains a __path__ attribute is considered a package.)

See also:

Type

Python defines two types of packages:

Management

Distribution

See Python - Regular Package (Shipping | Packaging)

Configuration

See Python - setup.py

Installation

See Python - Regular Package

Location

See Python - Regular Package

Documentation / Reference





Discover More
Data Mining Tool 2
Machine Learning - Data Mining (Software, Library and Framework)

This sections contains software library or framework that contains the implementation of machine learning algorithm. See Data...
Card Puncher Data Processing
Python - Grammar (Package | Module)

in Python On a file system: package are the directories and modules are the files within this directories. what ?? Python predecessor ABC_(programming_language)ABC. Python_syntax_and_semantics...
Card Puncher Data Processing
Python - Packages (Archive, Distribution)

in Python Packages (or better Distribution package) are the result of the packaging of a project that may contains one or more (regular) package regular packageregular package A package is a compressed...
Card Puncher Data Processing
Python - Project

Project in Python as describe by The project name is specified in the name properties in the setup function of the setup.py file Project are a set of file to package a package.: one package...
Card Puncher Data Processing
Python - Regular Package

A regular package is a directory containing an init file. Package can be installed via distribution package. See distribution package installation. See Their location can be chosen during...
Card Puncher Data Processing
Python - Wheel Archive (whl - bdist_wheel)

Wheel is a compiled archive format with the .whl extension. A wheel is a built package that can be installed without needing to go through the “build” process. Installing wheels is substantially faster...
Card Puncher Data Processing
Python Package - Module

On a file system, package are the directories and modules are the files within this directories. A module is a file that contains structure definitions including : variables class and functions....
Card Puncher Data Processing
Python Web - Werkzeug (WSGI)

Werkzeug is a HTTP and WSGI library request and response objects are provided to work with them. The request data takes the environ object and allows you to access the data from that environ in a...



Share this page:
Follow us:
Task Runner