32 lines
1.0 KiB
Python
32 lines
1.0 KiB
Python
import subprocess
|
|
from webdav3.client import Client
|
|
|
|
from xmlrpc.client import DateTime
|
|
import os
|
|
|
|
def sync_photo(photo_path):
|
|
# hochladen des bildes
|
|
print("Uploading file..")
|
|
print(os.path.isfile(photo_path))
|
|
subprocess.run(
|
|
["rclone", "copy", "{}".format(photo_path), "https://cloud.bauhaeusle.de/remote.php/dav/files/admin"]
|
|
)
|
|
print("photo uploaded!")
|
|
|
|
|
|
def sync_phot2(photo_path):
|
|
options = {
|
|
'webdav_hostname': "https://cloud.bauhaeusle.de/remote.php/dav",
|
|
'webdav_login': "bh",
|
|
'webdav_password': "forever2023!"
|
|
}
|
|
client = Client(options)
|
|
client.verify = False # To not check SSL certificates (Default = True)
|
|
#client.session.proxies(...) # To set proxy directly into the session (Optional)
|
|
#client.session.auth(...) # To set proxy auth directly into the session (Optional)
|
|
|
|
client.upload_sync(remote_path="BestOf/Fotobox", local_path=photo_path)
|
|
sync_photo(photo_path="/Users/rootrapp/Downloads/Screenshot 2023-06-19 at 18-43-27 QLC Quick Beginner Overview.png")
|
|
|
|
|