Skip to main content

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/mounts or command mount.
  • 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

Users parsers

Logs parsers

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

  1. Fork the Repository
    Click the "Fork" button on the top-right of this repository to create your own copy.

  2. Clone Your Fork
    Clone the repository to your local machine:

    git clone https://github.com/yechielb2000/linux-parsers.git
    
  3. 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.

  4. 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
    
  5. 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.

  6. Commit Your Changes
    After making your changes, commit them with a clear message:

    git commit -m "Add new parser for XYZ"
    
  7. Push Your Changes
    Push your changes to your fork:

    git push origin feature/new-parser
    
  8. Create a Pull Request
    Go to the original repository on GitHub and create a pull request (PR) from your fork. Make sure to target the main branch. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

linux_parsers-0.2.7.tar.gz (27.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

linux_parsers-0.2.7-py3-none-any.whl (45.0 kB view details)

Uploaded Python 3

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

Hashes for linux_parsers-0.2.7.tar.gz
Algorithm Hash digest
SHA256 56ff31e69ef0eb25416c68fabd423ad43d9473db949483f64346b28406e43c86
MD5 2ea5b45117f1c7872a7fe87f62105a00
BLAKE2b-256 69a6fc9006bae675a0b691641a71c5bd0cf0abf5e62193974dedbdd007c7e108

See more details on using hashes here.

Provenance

The following attestation bundles were made for linux_parsers-0.2.7.tar.gz:

Publisher: release.yml on yechielb2000/linux-parsers

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for linux_parsers-0.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 9ab256c9e0476c4b27310b9dc115a44d9417e3533706417729d8c4072cb061b1
MD5 d16646d5b5327c9739988de4baa5a942
BLAKE2b-256 6a8eaf31beaaa53452e5319f3db4a798395868fa5aeb48d11264568d209fb524

See more details on using hashes here.

Provenance

The following attestation bundles were made for linux_parsers-0.2.7-py3-none-any.whl:

Publisher: release.yml on yechielb2000/linux-parsers

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page