Questions tagged [wsgidav]

WsgiDAV is a generic WebDAV server based on WSGI and written in Python.

WsgiDAV is a generic WebDAV server based on WSGI and written in Python.

5 questions
2
votes
1 answer

How to use async tornado API inside tornado.wsgi.WSGIContainer?

I try to use custom WSGIContainer that should work with asynchronous operations: from tornado import httpserver, httpclient, ioloop, wsgi, gen @gen.coroutine def try_to_download(): response = yield…
Dmitry
  • 277
  • 4
  • 15
1
vote
1 answer

/sbin/mount.davfs: mounting failed; the server does not support WebDAV

I am trying to mount a remote webdav: sudo mount -t davfs https://files.isric.org/soilgrids/latest/data/ ~/webdav But I only get the following error: /sbin/mount.davfs: mounting failed; the server does not support WebDAV This server is a wsgidav…
Jorge Mendes
  • 388
  • 3
  • 14
0
votes
1 answer

Is there a preferred nginx config to run wsgidav behind a reverse proxy?

so far I simply use location /drive/ { # wsgidav proxy_pass http://127.0.0.1:8080/; } and it seems to do the trick. I can put files to the server, get them, browse through directories etc. all from Windows explorer. However, I can not rename a…
ElFishi
  • 43
  • 1
  • 6
0
votes
1 answer

How to improve the performance of webdav

I am using WsgiDAV which is a generic and extendable WebDAV server based on WSGI which is using cheroot HTTP server. The issue that i am facing is that the upload and download speed to/from the webdav is very slow. On windows it is about .33 mbps…
0
votes
1 answer

pyspider : No module named 'wsgidav'

I am using python 3.5.2 on windows 10,I installed pyspider,and run pyspider all,there are some errors,as follow: what should I do?
zwl1619
  • 4,002
  • 14
  • 54
  • 110