/source/glossary.txt

https://bitbucket.org/tarek/hitchhiker-guide-packaging/ · Plain Text · 207 lines · 172 code · 35 blank · 0 comment · 0 complexity · 903c20a7f7e3537dabd8f2251dbf004c MD5 · raw file

  1. ========
  2. Glossary
  3. ========
  4. .. glossary::
  5. Buildout
  6. A `python-based build system <http://www.buildout.org>`_ for creating,
  7. assembling and deploying applications from multiple parts, any of
  8. which may be non-python based. It lets you create a buildout
  9. configuration and reproduce the same software later.
  10. Buildout is commonly used to install and manage Python distributions.
  11. It differentiates itself from :doc:`<pip>` in a few ways: Buildout
  12. takes a configuration file as input, where as pip is run from the
  13. command-line. Buildout can run any arbitrary recipe during installation
  14. and so can manage non-python parts, such as config files, databases,
  15. etc. Buildout by default installs packages in a multi-version manner,
  16. so that each distribution is contained in a separate directory, and
  17. Buildout be configured so that other Buildout installations can re-use
  18. a multi-version archive of installed distributions. In contrast, Pip
  19. installs distributions into a single location, such that it's only
  20. possible to have a single version of each distribution installed at
  21. a time. However, it's possible to use different recipes with Buildout
  22. to create single location installations in the same fashion as pip.
  23. CPAN
  24. CPAN is the Comprehensive Perl Archive Network, a large collection of
  25. :term:`Perl` software and documentation. You can begin exploring from
  26. either http://www.cpan.org/, http://www.perl.com/CPAN/ or any of the
  27. mirrors listed at http://www.cpan.org/SITES.html. [CPAN]_
  28. Developer
  29. The person developing the package.
  30. Distribution
  31. A Python distribution is a versioned compressed archive file
  32. that contains Python packages, modules, and other resource
  33. files. The distribution file is what an end-user will download
  34. from the internet and install.
  35. A distribution is often also called a package. This is the term
  36. commonly used in other fields of computing. For example, Mac OS X
  37. and Debian call these files package files. However, in Python, the
  38. term package refers to an importable directory. In order to
  39. distinguish between these two concepts, the compressed archive file
  40. containing code is called a distribution.
  41. However, it is not uncommon in Python to refer to a distribution
  42. using the term package. While the two meanings of the term package
  43. is not always 100% unambigous, the context of the term package is
  44. usually sufficient to distinguish the meaning of the word. For
  45. example, the python installation tool pip is an acronym for
  46. "pip installs packages", while technically the tool installs
  47. distributions, the name package is used as it's meaning is more
  48. widely understood. Even the site where distributions are distributed
  49. at is called the Python Package Index (and not the Python Distribution
  50. Index).
  51. Distutils
  52. A standard and basic package that comes with the Python
  53. standard library. It is used for creating distributions
  54. (where it is imported in the ``setup.py`` file for that
  55. distribution).
  56. Extension Module
  57. A module written in the low-level language of the Python
  58. implementation: C/C++ for Python, Java for Jython. Typically
  59. contained in a single dynamically loadable pre-compiled file, e.g.
  60. a shared object (.so) file for Python extensions on Unix, a DLL
  61. (given the .pyd extension) for Python extensions on Windows, or a
  62. Java class file for Jython extensions.
  63. IRC
  64. Internet Relay Chat (IRC) is a form of real-time Internet text messaging
  65. (chat) or synchronous conferencing. It is mainly designed for group
  66. communication in discussion forums, called channels, but also allows
  67. one-to-one communication via private message as well as chat and data
  68. transfers via Direct Client-to-Client. [WikipediaIRC]_
  69. Known Good Set (KGS)
  70. A set of distributions at specified versions which are compatible with
  71. each other. Typically a test suite will be run which passes all
  72. tests before a specific set of packages is declared a known good
  73. set. This term is commonly used by frameworks and toolkits which
  74. are compromised of multiple individual distributions.
  75. Module
  76. A python source code file (ex. ``mymodule.py``), most often
  77. found in a package (``mypackage/mymodule.py``). You can import
  78. a module: ``import mymodule``, or ``import mypackage.mymodule``
  79. if it lives in ``mypackage``.
  80. Package
  81. A directory containing an ``__init__.py`` file (ex.
  82. ``mypackage/__init__.py``), and also usually containing
  83. modules (possibly along with other packages). You can import
  84. a package: ``import mypackage``
  85. A package should not be confused with a compressed archive file
  86. used to install Python code.
  87. Package Index
  88. A repository of distributions with a web interface to automate
  89. distribution discovery and consumption.
  90. .. seealso:: The :ref:`pypi_info` is the default packaging
  91. index for the Python community. It is open to all
  92. Python developers to consume and distribute their
  93. distributions.
  94. Packager
  95. The person packaging the package for a particular operating system
  96. (e.g. Debian).
  97. Perl
  98. Perl is a high-level programming language with an eclectic heritage
  99. written by Larry Wall and a cast of thousands. It derives from the
  100. ubiquitous C programming language and to a lesser extent from sed, awk,
  101. the Unix shell, and at least a dozen other tools and languages. Perl's
  102. process, file, and text manipulation facilities make it particularly
  103. well-suited for tasks involving quick prototyping, system utilities,
  104. software tools, system management tasks, database access, graphical
  105. programming, networking, and world wide web programming. These strengths
  106. make it especially popular with system administrators and CGI script
  107. authors, but mathematicians, geneticists, journalists, and even managers
  108. also use Perl. [PERL]_
  109. Pip
  110. :doc:`<pip>` is a command-line tool for downloading and installing
  111. Python distributions.
  112. Project
  113. A library, framework, script, plugin, application, or collection of
  114. data or other resources, or some combination thereof.
  115. Python projects must have unique names, which are registered on
  116. PyPI. Each project will then contain one or more releases, and
  117. each release may comprise one or more distributions.
  118. Note that there is a strong convention to name a project after the
  119. name of the package that is imported to run that project. However,
  120. this doesn't have to hold true. It's possible to install a distribution
  121. from the project 'spam' and have it provide a package importable only
  122. as 'eggs'.
  123. Pure Python Module
  124. A module written in Python and contained in a single .py file
  125. (and possibly associated .pyc and/or .pyo files). Sometimes referred
  126. to as a "pure module."
  127. Release
  128. A snapshot of a project at a particular point in time, denoted by a
  129. version identifier.
  130. Making a release may entail the publishing of multiple distributions.
  131. For example, if version 1.0 of a project was released, it could be
  132. available in both a source distribution format and a Windows
  133. installer distribution format.
  134. reStructuredText
  135. A plain text format used in many Python projects for documentation. The
  136. reStructuredText format is used in this document. For more information,
  137. please see the `reStructuredText Documentation
  138. <http://docutils.sourceforge.net/rst.html>`_.
  139. Standard Library
  140. Python's standard library is very extensive, offering a wide range of
  141. facilities as indicated by the long table of contents listed below. The
  142. library contains built-in modules (written in C) that provide access to
  143. system functionality such as file I/O that would otherwise be
  144. inaccessible to Python programmers, as well as modules written in Python
  145. that provide standardized solutions for many problems that occur in
  146. everyday programming. Some of these modules are explicitly designed to
  147. encourage and enhance the portability of Python programs by abstracting
  148. away platform-specifics into platform-neutral APIs. [StandardLibrary]_
  149. .. seealso:: `Python Standard Library Documentation
  150. <http://docs.python.org/library/>`_
  151. System Package
  152. A package provided by in a format native to the operating system.
  153. e.g. rpm or dpkg file.
  154. Tarball
  155. An archive format for collected a group of files together as one. The
  156. format's extension is usually ``.tar``, which represents its meaning,
  157. Tape ARchive. The format is often used in conjunction with a
  158. compression format such as gzip or bzip.
  159. Working Set
  160. A collection of distributions available for importing. These are the
  161. distributions that are on the `sys.path` variable. At most one
  162. version a distribution is possible in a working set.
  163. Working sets include all distributions available for importing, not
  164. just the sub-set of distributions which have actually been imported.
  165. Citations
  166. ---------
  167. .. [CPAN] `What is CPAN? <http://www.cpan.org/misc/cpan-faq.html#What_is_CPAN>`_
  168. .. [PERL] `What is Perl? <http://www.cpan.org/misc/cpan-faq.html#What_is_Perl>`_
  169. .. [StandardLibrary] `Python Standard Library Documentation
  170. <http://docs.python.org/library/>`_
  171. .. [WikipediaIRC] `Internet Relay Chat (Wikipedia)
  172. <http://en.wikipedia.org/wiki/Internet_Relay_Chat>`_