Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kowalpy/robot-framework-tftp-library
TFTP client for Robot Framework
https://github.com/kowalpy/robot-framework-tftp-library
Last synced: 19 days ago
JSON representation
TFTP client for Robot Framework
- Host: GitHub
- URL: https://github.com/kowalpy/robot-framework-tftp-library
- Owner: kowalpy
- License: lgpl-3.0
- Created: 2017-08-21T18:28:03.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-25T21:31:27.000Z (almost 7 years ago)
- Last Synced: 2024-10-10T23:49:16.461Z (about 1 month ago)
- Language: HTML
- Size: 52.7 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Robot Framework TFTP Library
This library provides functionality of TFTP client.
[Trivial File Transfer Protocol](https://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol)
isn't a complex protocol so the library contains only small amount of keywords. TFTP communication provided by [tftpy](http://tftpy.sourceforge.net/) .## License
LGPL 3.0
## Keyword documentation
[TftpLibrary.html](https://kowalpy.github.io/Robot-Framework-TFTP-Library/TftpLibrary.html)
## Version history
Version 1.0 released on 21st of August 2017
Version 1.1 released on 25th of December 2017
What's new in release 1.1:
- python 3 support
- setup bugfix by Jinhyuk.Im## Installation
- run command: pip install robotframework-tftplibraryOR
- download, unzip and run command: python setup.py install
## Usage
The simplest example (connect, download file, upload file):```
| Tftp Connect | ${tftp_server_address} |
| Tftp Download | ${file_name_01} |
| Tftp Upload | ${file_name_02} |
```