An open API service indexing awesome lists of open source software.

https://github.com/mondeja/distro_info

Python implementation mirror of Debian distro-info utility: https://salsa.debian.org/debian/distro-info/-/tree/master/python
https://github.com/mondeja/distro_info

Last synced: 2 months ago
JSON representation

Python implementation mirror of Debian distro-info utility: https://salsa.debian.org/debian/distro-info/-/tree/master/python

Awesome Lists containing this project

README

          

# distro_info

Python implementation mirror of [Debian distro-info utility][distro-info-link].

[distro-info-link]: https://salsa.debian.org/debian/distro-info/-/tree/master/python

## Installation

```bash
pip install debian-distro-info
```

## Usage

```python
from distro_info import DebianDistroInfo, UbuntuDistroInfo

di = UbuntuDistroInfo()
print(di._releases)
```