Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Chilkat2-Python Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Chilkat2-Python) SCP Upload Contents of String to Remote File

Demonstrates how to upload the contents of a string variable using the SCP protocol (Secure Copy Protocol over SSH). The text is uploaded to a file in specific remote directory. If the file did not already exist, it is created. If it already existed, it is overwritten.

Chilkat2 Python Downloads

Python Module for Windows, Linux, Alpine Linux, MacOS, Solaris

import sys
import chilkat2

# This example requires the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

ssh = chilkat2.Ssh()

# Connect to an SSH server:

# Hostname may be an IP address or hostname:
hostname = "www.some-ssh-server.com"
port = 22

success = ssh.Connect(hostname,port)
if (success != True):
    print(ssh.LastErrorText)
    sys.exit()

# Wait a max of 5 seconds when reading responses..
ssh.IdleTimeoutMs = 5000

# Authenticate using login/password:
success = ssh.AuthenticatePw("myLogin","myPassword")
if (success != True):
    print(ssh.LastErrorText)
    sys.exit()

# Once the SSH object is connected and authenticated, we use it
# as the underlying transport in our SCP object.
scp = chilkat2.Scp()

success = scp.UseSsh(ssh)
if (success != True):
    print(scp.LastErrorText)
    sys.exit()

content = "This string will be the contents of the remote file."
remotePath = "uploads/text/testUtf8.txt"

# The utf-8 byte representation of the string will be uploaded.
# See https://www.chilkatsoft.com/p/p_463.asp for a list of valid charsets.
charset = "utf-8"

# This uploads to the "uploads/text" directory relative to the HOME
# directory of the SSH user account.  
# Note: The remote target directory must already exist on the SSH server.
success = scp.UploadString(remotePath,content,charset)
if (success != True):
    print(scp.LastErrorText)
    sys.exit()

remotePath = "uploads/text/testUtf8_withBOM.txt"

# To include the utf-8 preamble (also known as the BOM),
# prefix the charset name with "bom:".  Any charset that can 
# optionally include a BOM can be specified in this way.
charset = "bom:utf-8"

# Uploads to a remote file that contains text in the 
# utf-8 representation, including the BOM at the start of the file.
success = scp.UploadString(remotePath,content,charset)
if (success != True):
    print(scp.LastErrorText)
    sys.exit()

print("SCP upload string success.")

# Disconnect
ssh.Disconnect()

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.