A simple tool for developers that can perform operations on server with just a few line of codes.
Project description
server_connector
A simple tool for developers to perform operations on server with just a few line of codes.
install
pip i server_connector
Usage
Before you perform operations on server, you need to initialize a ServerConnector object:
from server_connector import server
server_info = {
"ip": "your server ip",
"username": "xxx",
"password": "xxx"
}
sc = server.ServerConnector(server_info)
File operations
uploadFile(localPath, remotePath)
Upload a file from client to server.
sc.uploadFile("./xxx.txt", "/<directory>/xxx.txt")
Directory will be created recursively if it does not exist on server.
downloadFile(remotePath, localPath)
Download a file from server to client.
sc.downloadFile("/<directory>/xxx.txt", "./xxx.txt")
deleteFile(remotePath)
Delete a file from server.
sc.downloadFile("/path/to/your/file")
Directory operations
uploadDir(localPath, remotePath)
Upload a directory from client to server.
sc.uploadDir("./xxx", "/<directory>")
The xxx directory will be uploaded to /<directory>/xxx on server.
downloadDir(remotePath, localPath)
Download a directory from server to client.
sc.downloadDir("/<directory>/xxx", "./")
deleteDir(remotePath)
Delete a directory from server.
sc.deleteDir("/path/to/your/directory")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file server_connector-0.0.1-py3-none-any.whl.
File metadata
- Download URL: server_connector-0.0.1-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4348a8d90313af382e6c0e06190739a28e306fdffda24d0806102ef2f872014a
|
|
| MD5 |
8999e4468d61966f467442d35f176ac7
|
|
| BLAKE2b-256 |
e7c9d93becdcb7f8c0cf5ef03e80d6d1de19751710262d07eab733ed1821d6c9
|