sshconf


Namesshconf JSON
Version 0.2.5 PyPI version JSON
download
home_pageNone
SummaryLightweight SSH config library.
upload_time2022-04-16 02:04:19
maintainerNone
docs_urlNone
authorNone
requires_python>=3.5
licenseNone
keywords ssh config
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
sshconf
===========

[![PyPi version](https://pypip.in/v/sshconf/badge.png)](https://github.com/sorend/sshconf)
[![Build Status](https://travis-ci.com/sorend/sshconf.svg?branch=master)](https://travis-ci.com/sorend/sshconf)
[![codecov](https://codecov.io/gh/sorend/sshconf/branch/master/graph/badge.svg)](https://codecov.io/gh/sorend/sshconf)


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](https://www.cyberciti.biz/faq/create-ssh-config-file-on-linux-unix/)


Installation and usage
---------------------------

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

```bash
pip install sshconf
```

Below is some example use:

```python
from __future__ import print_function
from sshconf import read_ssh_config, empty_ssh_config
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")
print("newsvu", c.host("newsvu"))

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.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "sshconf",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": null,
    "keywords": "ssh,config",
    "author": null,
    "author_email": "S\u00f8ren A D <sorend@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/67/96/2a1fe7a9b24853d7c2b9db7ff264248674b59858a804d26b77d27cccb867/sshconf-0.2.5.tar.gz",
    "platform": null,
    "description": "\nsshconf\n===========\n\n[![PyPi version](https://pypip.in/v/sshconf/badge.png)](https://github.com/sorend/sshconf)\n[![Build Status](https://travis-ci.com/sorend/sshconf.svg?branch=master)](https://travis-ci.com/sorend/sshconf)\n[![codecov](https://codecov.io/gh/sorend/sshconf/branch/master/graph/badge.svg)](https://codecov.io/gh/sorend/sshconf)\n\n\nSshconf is a library for reading and modifying your ssh/config file in a non-intrusive way, meaning\nyour file should look more or less the same after modifications. Idea is to keep it simple,\nso you can modify it for your needs.\n\nRead more about ssh config files here: [Create SSH config file on Linux](https://www.cyberciti.biz/faq/create-ssh-config-file-on-linux-unix/)\n\n\nInstallation and usage\n---------------------------\n\nInstall through pip is the most easy way. You can install from the Git source directly:\n\n```bash\npip install sshconf\n```\n\nBelow is some example use:\n\n```python\nfrom __future__ import print_function\nfrom sshconf import read_ssh_config, empty_ssh_config\nfrom os.path import expanduser\n\nc = read_ssh_config(expanduser(\"~/.ssh/config\"))\nprint(\"hosts\", c.hosts())\n\n# assuming you have a host \"svu\"\nprint(\"svu host\", c.host(\"svu\"))  # print the settings\nc.set(\"svu\", Hostname=\"ssh.svu.local\", Port=1234)\nprint(\"svu host now\", c.host(\"svu\"))\nc.unset(\"svu\", \"port\")\nprint(\"svu host now\", c.host(\"svu\"))\n\nc.add(\"newsvu\", Hostname=\"ssh-new.svu.local\", Port=22, User=\"stud1234\")\nprint(\"newsvu\", c.host(\"newsvu\"))\n\nc.rename(\"newsvu\", \"svu-new\")\nprint(\"svu-new\", c.host(\"svu-new\"))\n\n# overwrite existing file(s)\nc.save()\n\n# write all to a new file\nc.write(expanduser(\"~/.ssh/newconfig\"))\n\n# creating a new config file.\nc2 = empty_ssh_config_file()\nc2.add(\"svu\", Hostname=\"ssh.svu.local\", User=\"teachmca\", Port=22)\nc2.write(\"newconfig\")\n\nc2.remove(\"svu\")  # remove\n```\n\nA few things to note:\n- `save()` overwrites the files you read from.\n- `write()` writes a new config file. If you used `Include` in the read configuration, output will contain everything in one file.\n- indent for new lines is auto-probed from existing config lines, and defaults to two spaces.\n\n\nAbout\n-----\n\nsshconf is created at the Department of Computer Science at Sri Venkateswara University, Tirupati, INDIA by a student as part of his projects.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Lightweight SSH config library.",
    "version": "0.2.5",
    "project_urls": {
        "homepage": "https://github.com/sorend/sshconf"
    },
    "split_keywords": [
        "ssh",
        "config"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a128e5ddc0737ff6bf59b9dd5f393906e3e4e16dc59d7c9574902176817eeaf",
                "md5": "5d345039a232dd42077baa56f59ce2bd",
                "sha256": "0244ebe7de4979e72b36d81c00d5d1fd693c6be9d41a61f1feaf0e9552ca5774"
            },
            "downloads": -1,
            "filename": "sshconf-0.2.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5d345039a232dd42077baa56f59ce2bd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.5",
            "size": 6690,
            "upload_time": "2022-04-16T02:04:17",
            "upload_time_iso_8601": "2022-04-16T02:04:17.675479Z",
            "url": "https://files.pythonhosted.org/packages/0a/12/8e5ddc0737ff6bf59b9dd5f393906e3e4e16dc59d7c9574902176817eeaf/sshconf-0.2.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67962a1fe7a9b24853d7c2b9db7ff264248674b59858a804d26b77d27cccb867",
                "md5": "b109967b15f68b2ba97110ae4bd365d8",
                "sha256": "e8a384cafb6346d0892d9bd68fc0be81604bc2479f19daa6950e7cd86e8e5c27"
            },
            "downloads": -1,
            "filename": "sshconf-0.2.5.tar.gz",
            "has_sig": false,
            "md5_digest": "b109967b15f68b2ba97110ae4bd365d8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 10405,
            "upload_time": "2022-04-16T02:04:19",
            "upload_time_iso_8601": "2022-04-16T02:04:19.211009Z",
            "url": "https://files.pythonhosted.org/packages/67/96/2a1fe7a9b24853d7c2b9db7ff264248674b59858a804d26b77d27cccb867/sshconf-0.2.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-04-16 02:04:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sorend",
    "github_project": "sshconf",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "sshconf"
}
        
Elapsed time: 0.09503s