pyshare/config.py

30 lines
930 B
Python
Raw Normal View History

# Can be 'curl' or 'sftp'
uploader = 'sftp'
# (S)FTP credentials, only if you want to use SFTP for uploads
# Set all to None that you don’t need
2017-11-20 15:12:02 +01:00
sftp_address = 'your_domain.com'
sftp_port = 22
username = None
password = None
private_key = None
2017-11-20 15:12:02 +01:00
private_key_pass = None
# This should contain a complete curl command with a {} to insert the filename.
# Example: 'curl -F"file=@{}" https://0x0.st'
2017-11-20 15:12:02 +01:00
curl_command = None
2017-10-14 12:03:36 +02:00
# This is where the screenshots are saved locally
local_directory = '/home/kageru/pyshare/'
2017-10-25 14:22:23 +02:00
2017-11-20 15:12:02 +01:00
# Directory on the ftp server where you want the screenshots to be sent
2017-10-14 12:03:36 +02:00
remote_directory = '/usr/share/nginx/html/pyshare/'
# Template for the link that the script will generate. {} is the filename
url_template = 'https://your_domain.com/pyshare/{}'
2017-10-25 14:22:23 +02:00
remote_port = 5000
2017-10-14 12:03:36 +02:00
# In case you want a certain prefix for all files. Can also be an empty string
prefix = ''
# Number of random characters in the filename
length = 5