Quotidien Shaarli

Tous les liens d'un jour sur une page.

February 11, 2025

DC-SS500 Temperature and Humidity module hacking page

 Sure Electronics DC-SS500 Temperature and Relative Humidity Sensor Module

Circuit électronique

zabuldon/easywebdav: A WebDAV Client in Python

EasyWebDAV2: Is a fork of EasyWebDAV library with included pull requests and some additional fixes. A WebDAV Client in Python

Features

  • Basic authentication
  • Creating directories, removing directories and files
  • Uploading and downloading files
  • Directory listing
  • Support for client side SSL certificates

Quick Start

    import easywebdav2
    # Start off by creating a client object. Username and
    # password may be omitted if no authentication is needed.
    webdav = easywebdav2.connect('webdav.your-domain.com', username='myuser', password='mypass')
    # Do some stuff:
    webdav.mkdir('some_dir')
    webdav.rmdir('another_dir')
    webdav.download('remote/path/to/file', 'local/target/file')
    webdav.upload('local/path/to/file', 'remote/target/file')