๐Ÿ“ฆ sorend / sshconf

SSH configuration reading and modification library in Python

โ˜… 101 stars โ‘‚ 21 forks ๐Ÿ‘ 101 watching โš–๏ธ MIT License
๐Ÿ“ฅ Clone https://github.com/sorend/sshconf.git
HTTPS git clone https://github.com/sorend/sshconf.git
SSH git clone git@github.com:sorend/sshconf.git
CLI gh repo clone sorend/sshconf
Soren A D Soren A D fix build 1689b00 7 days ago ๐Ÿ“ History
๐Ÿ“‚ master View all commits โ†’
๐Ÿ“ .ci
๐Ÿ“ .github
๐Ÿ“ tests
๐Ÿ“„ .gitignore
๐Ÿ“„ .python-version
๐Ÿ“„ LICENSE
๐Ÿ“„ Makefile
๐Ÿ“„ pyproject.toml
๐Ÿ“„ pytest.ini
๐Ÿ“„ README.md
๐Ÿ“„ setup.cfg
๐Ÿ“„ sshconf.py
๐Ÿ“„ uv.lock
๐Ÿ“„ README.md

sshconf ===========

PyPI version Build Status codecov

Sshconf is a library for reading and modifying your ssh/config file in a non-intrusive way, meaning your file should look more or less the same after modifications. Idea is to keep it simple, so you can modify it for your needs.

Read more about ssh config files here: Create SSH config file on Linux

Installation and usage


Install through pip is the most easy way. You can install from the Git source directly:

pip install sshconf

Below is some example use:

from sshconf import read_ssh_config, empty_ssh_config_file
from os.path import expanduser

c = read_ssh_config(expanduser("~/.ssh/config"))
print("hosts", c.hosts())

# assuming you have a host "svu"
print("svu host", c.host("svu"))  # print the settings
c.set("svu", Hostname="ssh.svu.local", Port=1234)
print("svu host now", c.host("svu"))
c.unset("svu", "port")
print("svu host now", c.host("svu"))

c.add("newsvu", Hostname="ssh-new.svu.local", Port=22, User="stud1234",
                RemoteForward=["localhost:2022 localhost:22", "localhost:2025 localhost:25"])
print("newsvu", c.host("newsvu"))

c.add("oldsvu", before_host="newsvu", Hostname="ssh-old.svu.local", Port=22, User="Stud1234")

c.rename("newsvu", "svu-new")
print("svu-new", c.host("svu-new"))

# overwrite existing file(s)
c.save()

# write all to a new file
c.write(expanduser("~/.ssh/newconfig"))

# creating a new config file.
c2 = empty_ssh_config_file()
c2.add("svu", Hostname="ssh.svu.local", User="teachmca", Port=22)
c2.write("newconfig")

c2.remove("svu")  # remove

A few things to note:

  • save() overwrites the files you read from.
  • write() writes a new config file. If you used Include in the read configuration, output will contain everything in one file.
  • indent for new lines is auto-probed from existing config lines, and defaults to two spaces.

About


sshconf is created at the Department of Computer Science at Sri Venkateswara University, Tirupati, INDIA by a student as part of his projects.