Metadata-Version: 2.1
Name: serial-uploader
Version: 0.1
Summary: Simple serial console switch configuration uploader.
Home-page: UNKNOWN
Author: David Caro
Author-email: david@dcaro.es
Maintainer: David Caro
Maintainer-email: david@dcaro.es
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
Requires-Dist: pyserial
Requires-Dist: click

# Serial Uploader


Simple script to upload switch configurations though a serial connection.


Just have the configuration that you want to upload in a file, and run::

    sudo serial_uploader \
        --config-file my_switch_config.txt -
        --serial-device-path /dev/ttyUSB0



If you need user and password, you can pass the username, and the password
will be prompted for::

    sudo serial_uploader \
        --config-file my_switch_config.txt \
        --serial-device-path /dev/ttyUSB0 \
        --user myuser


