Skip to content

Commit b57d980

Browse files
committed
updated
1 parent 1a56eeb commit b57d980

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Release notes
22
=============
33

4+
0.3.6 (2019/04/29)
5+
------------------
6+
- support for webdavs:// opener protocol
7+
[ajung]
8+
9+
410
0.3.5 (2018/08/06)
511
------------------
612
- fixed return type of getinfo() dates due to strong

README.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,19 @@ or use the public constructor of the ``WebDAVFS`` class:
3535
>>> print(handle.listdir('.'))
3636
....
3737
38+
For WebDAV over HTTPS you can use either `webdav://` with port 443
39+
40+
.. code:: python
41+
42+
>>> handle = fs.open_fs('webdav://admin:[email protected]:443/exist/webdav/db')
43+
44+
or `webdavs://`:
45+
46+
.. code:: python
47+
48+
>>> handle = fs.open_fs('webdavs://admin:[email protected]/exist/webdav/db')
49+
50+
3851
Repository
3952
----------
4053

0 commit comments

Comments
 (0)