Skip to content

yechielb2000/linux-parsers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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.
  • dpkg.py - parse commands: dpkg -l.
  • 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.

About

Simplest library for parsing linux commands and files

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages