Simplest library for parsing linux commands and files
Project description
Linux Parsers
🤵♂️ 🐧 🤵♀️ 🐧 🤵 🐧
^________________________________________________________
| |
| Simplest library for parsing linux commands and files |
\________________________________________________________/
How to use
Let's say you want to parse ps aux command to get the processes in a better form.
import subprocess
from linux_parsers.parsers.process.ps import parse_ps_aux
completed_process_result = subprocess.run(['ps', 'aux'], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
command_output = completed_process_result.stdout
parsed_command_output = parse_ps_aux(command_output)
🔍 Auto-Detection of Parsers
The package includes an auto-detection system that selects the correct parser based on the command used to generate the output.
✅ Supported Detection
Auto-detection works for standard Linux binaries such as: iptables, ss, ping, ac, ip etc...
and many more...
You provide the command that was used to generate the output, and the library will choose the appropriate parser based on known binary + flags/signatures.
from linux_parsers import auto_parse_output
command = "ac -pd"
command_output = "..."
result = auto_parse_output(command, command_output)
NOTE: Please provide the command without any pipes (e.g., avoid ss -tulpn | grep LISTEN). Detection is based on the original binary and flags only.
If the command is known to the package and parseable, the function will detect the command output and return the command parsed back to you.
⚠️ Not Supported: File-Reader Commands
Auto-detection does not work for commands like: cat, head, tail, less, more etc...
These commands read files, and auto-detection does not try to guess which file was read or what format it contains. For such cases, you must call the appropriate parser directly based on the file content:
from linux_parsers.parsers.users.etc_passwd import parse_etc_passwd_file
with open("/etc/passwd") as f:
output = f.read()
result = parse_etc_passwd_file(output)
Available Parsers
Filesystem parsers
- df.py - parse commands:
df. - packages.py - parse commands:
dpkg -l,yum list installed,rpm -qa,snap list,flatpak list. - du.py - parse commands:
du -ab <path>. - fdisk.py - parse commands:
fdisk -l. - ls.py - parse commands:
ls -la. - mount.py - parse file
/proc/mountsor commandmount. - etc_fstab.py - parse file:
/etc/fstab. - stat.py - parse commands:
stat.
Network parsers
- arp.py - parse commands:
arp -i <interface>,arp -en,arp -e. - etc_resolve_conf.py - parse file:
/etc/resolve.conf. - ip.py - parse commands:
ip a,ip r,ip n. - iptables.py - parse commands:
iptables -L -n -v. - netstat.py - parse commands:
netstat -tulpan. - ping.py - parse commands:
ping <address>. - ss.py - parse commands:
ss -tulnap,ss -s. - ufw.py - parse commands:
ufw app list,ufw status.
Process parsers
- cgroups.py - parse commands & files:
/proc/cgroups,/proc/<pid>/cgroups,/sys/fs/cgroup/<controller>/<cgroup_path>/cgroup.procs,systemd-cgls -al. - jobs.py - parse commands:
jobs. - ps.py - parse commands:
ps aux,ps -ax,ps -caweL,ps -fadel. - top.py - parse commands:
top. - lsipc.py - parse commands:
lsipc. - proc_modules.py - parse files:
/proc/modules.
Session parsers
- last.py - parse commands:
last. - w.py - parse commands:
w. - who.py - parse commands:
who -a. - ac.py - parse commands:
ac -d,ac -p,ac -pd.
System parsers
- etc_os_release.py - parse file:
/etc/os-release. - free.py - parse commands:
free -btlv. - hwinfo.py - parse commands:
hwinfo --<action>. - iostat.py - parse commands:
iostat -x. - mpstat.py - parse commands:
mpstat -P ALL. - proc_cpuinfo.py - parse file:
/proc/cpuinfo. - proc_meminfo.py - parse file:
/proc/meminfo. - proc_version.py - parse file:
/proc/version. - proc_devices.py - parse file:
/proc/devices - proc_uptime.py - parse file:
/proc/uptime - service.py - parse commands:
service --status-all. - etc_systemd_file_conf.py - parse files:
/etc/systemd/*.conf. - uname.py - parse commands:
uname -a. - vmstat.py - parse commands:
vmstat,vmstat -adt. - ldd.py - parse commands:
ldd --version,ldd -v <program>,ldd <program>. - lsmod.py - parse commands:
lsmod.
Users parsers
- chage.py - parse commands:
chage -l <username>. - etc_group.py - parse file:
/etc/group. - etc_gshadow.py - parse file:
/etc/gshadow. - etc_passwd.py - parse file:
/etc/passwd. - etc_shadow.py - parse file:
/etc/shadow. - useradd.py - parse commands:
useradd -D.
Logs parsers
- var_log_secure.py - parse logfile:
/var/log/secure. - var_log_dpkg.py - parse logfile:
/var/log/dpkg.log. - var_log_auth.py - parse logfile:
/var/log/auth.log. - var_log_cron.py - parse logfile:
/var/log/cron. - var_log_syslog.py - parse logfile:
/var/log/syslog. - var_log_wtmp_btmp_utmp.py - parse logfiles:
/var/log/utmp,/var/log/wtmp,/var/log/btmp. - var_log_udev.py - parse logfile:
/var/log/udev. - var_log_messages.py - parse logfile
/var/log/messages.
Contribute
Thank you for considering contributing to this project! Whether you want to add parsers, fix bugs, or enhance the project, your contributions are welcome. Follow the instructions below to get started.
How to Contribute
-
Fork the Repository
Click the "Fork" button on the top-right of this repository to create your own copy. -
Clone Your Fork
Clone the repository to your local machine:git clone https://github.com/yechielb2000/linux-parsers.git
-
Set Up the Project
Navigate into the project directory:cd linux-parsers
Install dependencies and set up pre-commit hooks:
uv sync uv run pre-commit run --all-files
This will ensure everything is up to date and that the code is formatted according to the project's standards.
-
Create a New Branch
Always create a new branch for your changes. The branch name should follow this convention:- Bug fixes:
bugfix/parsername - New parsers:
feature/parsername - Refactors:
refactor/parsername
Example:
git checkout -b feature/new-parser
- Bug fixes:
-
Make Your Changes
Add your parser or make any changes to the code. Ensure your changes are thoroughly tested and adhere to the project's guidelines. -
Commit Your Changes
After making your changes, commit them with a clear message:git commit -m "Add new parser for XYZ"
-
Push Your Changes
Push your changes to your fork:git push origin feature/new-parser
-
Create a Pull Request
Go to the original repository on GitHub and create a pull request (PR) from your fork. Make sure to target themainbranch. Provide a clear description of the changes in your PR, referencing any relevant issues.
Thank You!
We greatly appreciate your contributions to this project! Your work helps improve the project for everyone. If you have any questions or need help, don't hesitate to reach out.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file linux_parsers-0.2.7.tar.gz.
File metadata
- Download URL: linux_parsers-0.2.7.tar.gz
- Upload date:
- Size: 27.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56ff31e69ef0eb25416c68fabd423ad43d9473db949483f64346b28406e43c86
|
|
| MD5 |
2ea5b45117f1c7872a7fe87f62105a00
|
|
| BLAKE2b-256 |
69a6fc9006bae675a0b691641a71c5bd0cf0abf5e62193974dedbdd007c7e108
|
Provenance
The following attestation bundles were made for linux_parsers-0.2.7.tar.gz:
Publisher:
release.yml on yechielb2000/linux-parsers
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
linux_parsers-0.2.7.tar.gz -
Subject digest:
56ff31e69ef0eb25416c68fabd423ad43d9473db949483f64346b28406e43c86 - Sigstore transparency entry: 1191634351
- Sigstore integration time:
-
Permalink:
yechielb2000/linux-parsers@010b7bba885442d28168848bcfb515578ab9e5b8 -
Branch / Tag:
refs/tags/0.2.7 - Owner: https://github.com/yechielb2000
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@010b7bba885442d28168848bcfb515578ab9e5b8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file linux_parsers-0.2.7-py3-none-any.whl.
File metadata
- Download URL: linux_parsers-0.2.7-py3-none-any.whl
- Upload date:
- Size: 45.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ab256c9e0476c4b27310b9dc115a44d9417e3533706417729d8c4072cb061b1
|
|
| MD5 |
d16646d5b5327c9739988de4baa5a942
|
|
| BLAKE2b-256 |
6a8eaf31beaaa53452e5319f3db4a798395868fa5aeb48d11264568d209fb524
|
Provenance
The following attestation bundles were made for linux_parsers-0.2.7-py3-none-any.whl:
Publisher:
release.yml on yechielb2000/linux-parsers
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
linux_parsers-0.2.7-py3-none-any.whl -
Subject digest:
9ab256c9e0476c4b27310b9dc115a44d9417e3533706417729d8c4072cb061b1 - Sigstore transparency entry: 1191634355
- Sigstore integration time:
-
Permalink:
yechielb2000/linux-parsers@010b7bba885442d28168848bcfb515578ab9e5b8 -
Branch / Tag:
refs/tags/0.2.7 - Owner: https://github.com/yechielb2000
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@010b7bba885442d28168848bcfb515578ab9e5b8 -
Trigger Event:
push
-
Statement type: