METADATA 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. Metadata-Version: 2.1
  2. Name: distro
  3. Version: 1.8.0
  4. Summary: Distro - an OS platform information API
  5. Home-page: https://github.com/python-distro/distro
  6. Author: Nir Cohen
  7. Author-email: nir36g@gmail.com
  8. License: Apache License, Version 2.0
  9. Platform: All
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: Intended Audience :: System Administrators
  13. Classifier: License :: OSI Approved :: Apache Software License
  14. Classifier: Operating System :: POSIX :: Linux
  15. Classifier: Operating System :: POSIX :: BSD
  16. Classifier: Operating System :: POSIX :: BSD :: FreeBSD
  17. Classifier: Operating System :: POSIX :: BSD :: NetBSD
  18. Classifier: Operating System :: POSIX :: BSD :: OpenBSD
  19. Classifier: Programming Language :: Python :: 3
  20. Classifier: Programming Language :: Python :: 3 :: Only
  21. Classifier: Programming Language :: Python :: 3.6
  22. Classifier: Programming Language :: Python :: 3.7
  23. Classifier: Programming Language :: Python :: 3.8
  24. Classifier: Programming Language :: Python :: 3.9
  25. Classifier: Programming Language :: Python :: 3.10
  26. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  27. Classifier: Topic :: System :: Operating System
  28. Requires-Python: >=3.6
  29. Description-Content-Type: text/markdown
  30. License-File: LICENSE
  31. Distro - an OS platform information API
  32. =======================================
  33. [![CI Status](https://github.com/python-distro/distro/workflows/CI/badge.svg)](https://github.com/python-distro/distro/actions/workflows/ci.yaml)
  34. [![PyPI version](http://img.shields.io/pypi/v/distro.svg)](https://pypi.python.org/pypi/distro)
  35. [![Supported Python Versions](https://img.shields.io/pypi/pyversions/distro.svg)](https://img.shields.io/pypi/pyversions/distro.svg)
  36. [![Code Coverage](https://codecov.io/github/python-distro/distro/coverage.svg?branch=master)](https://codecov.io/github/python-distro/distro?branch=master)
  37. [![Is Wheel](https://img.shields.io/pypi/wheel/distro.svg?style=flat)](https://pypi.python.org/pypi/distro)
  38. [![Latest Github Release](https://readthedocs.org/projects/distro/badge/?version=stable)](http://distro.readthedocs.io/en/latest/)
  39. [![Join the chat at https://gitter.im/python-distro/distro](https://badges.gitter.im/python-distro/distro.svg)](https://gitter.im/python-distro/distro?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
  40. `distro` provides information about the
  41. OS distribution it runs on, such as a reliable machine-readable ID, or
  42. version information.
  43. It is the recommended replacement for Python's original
  44. [`platform.linux_distribution`](https://docs.python.org/3.7/library/platform.html#platform.linux_distribution)
  45. function (removed in Python 3.8). It also provides much more functionality
  46. which isn't necessarily Python bound, like a command-line interface.
  47. Distro currently supports Linux and BSD based systems but [Windows and OS X support](https://github.com/python-distro/distro/issues/177) is also planned.
  48. For Python 2.6 support, see https://github.com/python-distro/distro/tree/python2.6-support
  49. ## Installation
  50. Installation of the latest released version from PyPI:
  51. ```shell
  52. pip install distro
  53. ```
  54. Installation of the latest development version:
  55. ```shell
  56. pip install https://github.com/python-distro/distro/archive/master.tar.gz
  57. ```
  58. To use as a standalone script, download `distro.py` directly:
  59. ```shell
  60. curl -O https://raw.githubusercontent.com/python-distro/distro/master/src/distro/distro.py
  61. python distro.py
  62. ```
  63. ``distro`` is safe to vendor within projects that do not wish to add
  64. dependencies.
  65. ```shell
  66. cd myproject
  67. curl -O https://raw.githubusercontent.com/python-distro/distro/master/src/distro/distro.py
  68. ```
  69. ## Usage
  70. ```bash
  71. $ distro
  72. Name: Antergos Linux
  73. Version: 2015.10 (ISO-Rolling)
  74. Codename: ISO-Rolling
  75. $ distro -j
  76. {
  77. "codename": "ISO-Rolling",
  78. "id": "antergos",
  79. "like": "arch",
  80. "version": "16.9",
  81. "version_parts": {
  82. "build_number": "",
  83. "major": "16",
  84. "minor": "9"
  85. }
  86. }
  87. $ python
  88. >>> import distro
  89. >>> distro.name(pretty=True)
  90. 'CentOS Linux 8'
  91. >>> distro.id()
  92. 'centos'
  93. >>> distro.version(best=True)
  94. '8.4.2105'
  95. ```
  96. ## Documentation
  97. On top of the aforementioned API, several more functions are available. For a complete description of the
  98. API, see the [latest API documentation](http://distro.readthedocs.org/en/latest/).
  99. ## Background
  100. An alternative implementation became necessary because Python 3.5 deprecated
  101. this function, and Python 3.8 removed it altogether. Its predecessor function
  102. [`platform.dist`](https://docs.python.org/3.7/library/platform.html#platform.dist)
  103. was already deprecated since Python 2.6 and removed in Python 3.8. Still, there
  104. are many cases in which access to that information is needed. See [Python issue
  105. 1322](https://bugs.python.org/issue1322) for more information.
  106. The `distro` package implements a robust and inclusive way of retrieving the
  107. information about a distribution based on new standards and old methods,
  108. namely from these data sources (from high to low precedence):
  109. * The os-release file `/etc/os-release` if present, with a fall-back on `/usr/lib/os-release` if needed.
  110. * The output of the `lsb_release` command, if available.
  111. * The distro release file (`/etc/*(-|_)(release|version)`), if present.
  112. * The `uname` command for BSD based distrubtions.
  113. ## Python and Distribution Support
  114. `distro` is supported and tested on Python 3.6+ and PyPy and on any
  115. distribution that provides one or more of the data sources covered.
  116. This package is tested with test data that mimics the exact behavior of the data sources of [a number of Linux distributions](https://github.com/python-distro/distro/tree/master/tests/resources/distros).
  117. ## Testing
  118. ```shell
  119. git clone git@github.com:python-distro/distro.git
  120. cd distro
  121. pip install tox
  122. tox
  123. ```
  124. ## Contributions
  125. Pull requests are always welcome to deal with specific distributions or just
  126. for general merriment.
  127. See [CONTRIBUTIONS](https://github.com/python-distro/distro/blob/master/CONTRIBUTING.md) for contribution info.
  128. Reference implementations for supporting additional distributions and file
  129. formats can be found here:
  130. * https://github.com/saltstack/salt/blob/develop/salt/grains/core.py#L1172
  131. * https://github.com/chef/ohai/blob/master/lib/ohai/plugins/linux/platform.rb
  132. * https://github.com/ansible/ansible/blob/devel/lib/ansible/module_utils/facts/system/distribution.py
  133. * https://github.com/puppetlabs/facter/blob/master/lib/src/facts/linux/os_linux.cc
  134. ## Package manager distributions
  135. * https://src.fedoraproject.org/rpms/python-distro
  136. * https://www.archlinux.org/packages/community/any/python-distro/
  137. * https://launchpad.net/ubuntu/+source/python-distro
  138. * https://packages.debian.org/stable/python3-distro
  139. * https://packages.gentoo.org/packages/dev-python/distro
  140. * https://pkgs.org/download/python3-distro
  141. * https://slackbuilds.org/repository/14.2/python/python-distro/