net-device-conn


Namenet-device-conn JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryAnother network connection project using netmiko
upload_time2025-07-23 04:31:38
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords network client ssh
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            #  net-device-conn

## Current Features 
- Still under development.

### How to Use:
    # Update pip and create a virtual environment, then activate the environment and install.
        ```
        python -m pip install --upgrade pip
        py -m venv venv
        .\venv\Scripts\activate
        python -m pip install .
        ```
    
    # If you have a GNS3 environment or a network device with SSH setup then you can try and connect to it.
        ```
        (venv) net-device-conn> python
        >>> import net_device_conn
        >>> handler = net_device_conn.DeviceHandler(device_type="cisco_ios", host='192.168.233.10', username='admin', password='cisco') 
        >>> h = handler.connect()
        >>> output = h.send_command('show ver')
        >>> print(output)
        >>> exit()
        ```

## Dependency:
    netmiko

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "net-device-conn",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "network, client, ssh",
    "author": null,
    "author_email": "Larry Zhu <larry.lan.zhu@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/57/bf/790f9527662855cdbe4534b5ae3fd542cea4465e965eba14335945dab41c/net_device_conn-0.1.0.tar.gz",
    "platform": null,
    "description": "#  net-device-conn\r\n\r\n## Current Features \r\n- Still under development.\r\n\r\n### How to Use:\r\n    # Update pip and create a virtual environment, then activate the environment and install.\r\n        ```\r\n        python -m pip install --upgrade pip\r\n        py -m venv venv\r\n        .\\venv\\Scripts\\activate\r\n        python -m pip install .\r\n        ```\r\n    \r\n    # If you have a GNS3 environment or a network device with SSH setup then you can try and connect to it.\r\n        ```\r\n        (venv) net-device-conn> python\r\n        >>> import net_device_conn\r\n        >>> handler = net_device_conn.DeviceHandler(device_type=\"cisco_ios\", host='192.168.233.10', username='admin', password='cisco') \r\n        >>> h = handler.connect()\r\n        >>> output = h.send_command('show ver')\r\n        >>> print(output)\r\n        >>> exit()\r\n        ```\r\n\r\n## Dependency:\r\n    netmiko\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Another network connection project using netmiko",
    "version": "0.1.0",
    "project_urls": {
        "Repository": "https://github.com/myusernamehasbeentaken/net-device-conn"
    },
    "split_keywords": [
        "network",
        " client",
        " ssh"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bca60359edb0ebd351243cf4a8675456820bd8cbdbf4ad85d8881007da243b42",
                "md5": "5c0bec35fbccdc93470a782a8af90dbd",
                "sha256": "c910936c86d91ddb645071f80a5c162f8491067cfe60ec372d8e0e35c905b479"
            },
            "downloads": -1,
            "filename": "net_device_conn-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5c0bec35fbccdc93470a782a8af90dbd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 6784,
            "upload_time": "2025-07-23T04:31:37",
            "upload_time_iso_8601": "2025-07-23T04:31:37.152467Z",
            "url": "https://files.pythonhosted.org/packages/bc/a6/0359edb0ebd351243cf4a8675456820bd8cbdbf4ad85d8881007da243b42/net_device_conn-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57bf790f9527662855cdbe4534b5ae3fd542cea4465e965eba14335945dab41c",
                "md5": "c67d1e475201d4d3f27d90ae420846b6",
                "sha256": "2bb529df31fc6b571f0545bc16442dd3f990f4a3782f3b2e23c9036538ea3f19"
            },
            "downloads": -1,
            "filename": "net_device_conn-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c67d1e475201d4d3f27d90ae420846b6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 5483,
            "upload_time": "2025-07-23T04:31:38",
            "upload_time_iso_8601": "2025-07-23T04:31:38.069373Z",
            "url": "https://files.pythonhosted.org/packages/57/bf/790f9527662855cdbe4534b5ae3fd542cea4465e965eba14335945dab41c/net_device_conn-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-23 04:31:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "myusernamehasbeentaken",
    "github_project": "net-device-conn",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "net-device-conn"
}
        
Elapsed time: 0.88271s