WsgiDAV


NameWsgiDAV JSON
Version 4.3.2 PyPI version JSON
download
home_pagehttps://github.com/mar10/wsgidav
SummaryGeneric and extendable WebDAV server based on WSGI
upload_time2024-03-29 13:54:52
maintainerMartin Wendt
docs_urlNone
authorMartin Wendt
requires_pythonNone
licenseMIT
keywords web wsgi webdav application server
VCS
bugtrack_url
requirements defusedxml Jinja2 json5 python-pam PyYAML
Travis-CI
coveralls test coverage No coveralls.
            # ![logo](https://raw.githubusercontent.com/mar10/wsgidav/master/docs/source/logo.png) WsgiDAV
[![Tests](https://github.com/mar10/wsgidav/actions/workflows/tests.yml/badge.svg)](https://github.com/mar10/wsgidav/actions/workflows/tests.yml)
[![Latest Version](https://img.shields.io/pypi/v/wsgidav.svg)](https://pypi.python.org/pypi/WsgiDAV/)
[![License](https://img.shields.io/pypi/l/wsgidav.svg)](https://github.com/mar10/wsgidav/blob/master/LICENSE)
[![Documentation Status](https://readthedocs.org/projects/wsgidav/badge/?version=latest)](http://wsgidav.readthedocs.io/)
[![codecov](https://codecov.io/gh/mar10/wsgidav/graph/badge.svg?token=0hNADSIxDz)](https://codecov.io/gh/mar10/wsgidav)
[![Released with: Yabs](https://img.shields.io/badge/released%20with-yabs-yellowgreen)](https://github.com/mar10/yabs)
[![StackOverflow: WsgiDAV](https://img.shields.io/badge/StackOverflow-WsgiDAV-blue.svg)](https://stackoverflow.com/questions/tagged/WsgiDAV)


[![Edit online in vscode.dev](https://img.shields.io/badge/--007ACC?logo=visual%20studio%20code&logoColor=ffffff) Open in Visual Studio Code (experimental)](https://open.vscode.dev/mar10/wsgidav)

<!-- [![Open in Visual Studio Code](https://open.vscode.dev/badges/open-in-vscode.svg)](https://open.vscode.dev/mar10/wsgidav) -->

A generic and extendable [WebDAV](http://www.ietf.org/rfc/rfc4918.txt) server
written in Python and based on [WSGI](http://www.python.org/dev/peps/pep-3333/).

Main features:

  - WsgiDAV is a stand-alone WebDAV server with SSL support, that can be
    installed and run as Python command line script on Linux, OSX, and Windows:<br>
    ```
    $ pip install wsgidav cheroot
    $ wsgidav --host=0.0.0.0 --port=80 --root=/tmp --auth=anonymous
    Running without configuration file.
    10:54:16.597 - INFO    : WsgiDAV/4.0.0-a1 Python/3.9.1 macOS-12.0.1-x86_64-i386-64bit
    10:54:16.598 - INFO    : Registered DAV providers by route:
    10:54:16.598 - INFO    :   - '/:dir_browser': FilesystemProvider for path '/Users/martin/prj/git/wsgidav/wsgidav/dir_browser/htdocs' (Read-Only) (anonymous)
    10:54:16.599 - INFO    :   - '/': FilesystemProvider for path '/tmp' (Read-Write) (anonymous)
    10:54:16.599 - WARNING : Basic authentication is enabled: It is highly recommended to enable SSL.
    10:54:16.599 - WARNING : Share '/' will allow anonymous write access.
    10:54:16.813 - INFO    : Running WsgiDAV/4.0.0-a1 Cheroot/8.5.2 Python 3.9.1
    10:54:16.813 - INFO    : Serving on http://0.0.0.0:80 ...
    ```
    Run `wsgidav --help` for a list of available options.<br>

  - The [python-pam](https://github.com/FirefighterBlu3/python-pam) library is 
    needed as extra requirement if pam-login authentication is used on Linux 
    or OSX:
    ```
    $ pip install wsgidav[pam]
    $ wsgidav --host=0.0.0.0 --port=8080 --root=/tmp --auth=pam-login
    ```

  - **Note:** Windows users may prefer the
    [MSI Installer](https://github.com/mar10/wsgidav/releases/latest)
    (see <kbd>Assets</kbd> section).

  - WebDAV is a superset of HTTP, so WsgiDAV is also a performant, multi-threaded
    web server with SSL support.

  - WsgiDAV is also a Python library that implements the WSGI protocol and can
	  be run behind any WSGI compliant web server.<br>

  - WsgiDAV is implemented as a configurable stack of WSGI middleware
    applications.<br>
    Its open architecture allows to extend the functionality and integrate
    WebDAV services into your project.<br>
  	Typical use cases are:
  	- Expose data structures as virtual, editable file systems.
  	- Allow online editing of MS Office documents.


## Status

[![Latest Version](https://img.shields.io/pypi/v/wsgidav.svg)](https://pypi.python.org/pypi/WsgiDAV/)
See the ([change log](https://github.com/mar10/wsgidav/blob/master/CHANGELOG.md)) for details.

**Note:** Release 4.0 introduces some refactorings and breaking changes.<br>
  See the ([change log](https://github.com/mar10/wsgidav/blob/master/CHANGELOG.md)) for details.


## More info

  * [Read The Docs](http://wsgidav.rtfd.org) for details.
  * [Discussion Group](https://github.com/mar10/wsgidav/discussions)
  * [Stackoverflow](http://stackoverflow.com/questions/tagged/wsgidav)


## Credits

Contributors:

  * WsgiDAV is a [refactored version](https://github.com/mar10/wsgidav/blob/master/docs/source/changelog04.md)
    of [PyFileServer 0.2](https://github.com/cwho/pyfileserver),
    Copyright (c) 2005 Ho Chun Wei.<br>
    Chun gave his approval to change the license from LGPL to MIT-License for
    this project.
  * <https://github.com/mar10/wsgidav/contributors>
  * Markus Majer for providing the logo (a mixture of the international
    maritime signal flag for 'W (Whiskey)' and a dove.)


Any kind of feedback is very welcome!<br>
Have fun  :-)<br>
Martin

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mar10/wsgidav",
    "name": "WsgiDAV",
    "maintainer": "Martin Wendt",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "wsgidav@wwwendt.de",
    "keywords": "web, wsgi, webdav, application, server",
    "author": "Martin Wendt",
    "author_email": "wsgidav@wwwendt.de",
    "download_url": "https://files.pythonhosted.org/packages/29/e9/20c31025286ed18282af8bd91f45ea7584cb137172ab7add92d220ce4883/WsgiDAV-4.3.2.tar.gz",
    "platform": null,
    "description": "# ![logo](https://raw.githubusercontent.com/mar10/wsgidav/master/docs/source/logo.png) WsgiDAV\r\n[![Tests](https://github.com/mar10/wsgidav/actions/workflows/tests.yml/badge.svg)](https://github.com/mar10/wsgidav/actions/workflows/tests.yml)\r\n[![Latest Version](https://img.shields.io/pypi/v/wsgidav.svg)](https://pypi.python.org/pypi/WsgiDAV/)\r\n[![License](https://img.shields.io/pypi/l/wsgidav.svg)](https://github.com/mar10/wsgidav/blob/master/LICENSE)\r\n[![Documentation Status](https://readthedocs.org/projects/wsgidav/badge/?version=latest)](http://wsgidav.readthedocs.io/)\r\n[![codecov](https://codecov.io/gh/mar10/wsgidav/graph/badge.svg?token=0hNADSIxDz)](https://codecov.io/gh/mar10/wsgidav)\r\n[![Released with: Yabs](https://img.shields.io/badge/released%20with-yabs-yellowgreen)](https://github.com/mar10/yabs)\r\n[![StackOverflow: WsgiDAV](https://img.shields.io/badge/StackOverflow-WsgiDAV-blue.svg)](https://stackoverflow.com/questions/tagged/WsgiDAV)\r\n\r\n\r\n[![Edit online in vscode.dev](https://img.shields.io/badge/--007ACC?logo=visual%20studio%20code&logoColor=ffffff) Open in Visual Studio Code (experimental)](https://open.vscode.dev/mar10/wsgidav)\r\n\r\n<!-- [![Open in Visual Studio Code](https://open.vscode.dev/badges/open-in-vscode.svg)](https://open.vscode.dev/mar10/wsgidav) -->\r\n\r\nA generic and extendable [WebDAV](http://www.ietf.org/rfc/rfc4918.txt) server\r\nwritten in Python and based on [WSGI](http://www.python.org/dev/peps/pep-3333/).\r\n\r\nMain features:\r\n\r\n  - WsgiDAV is a stand-alone WebDAV server with SSL support, that can be\r\n    installed and run as Python command line script on Linux, OSX, and Windows:<br>\r\n    ```\r\n    $ pip install wsgidav cheroot\r\n    $ wsgidav --host=0.0.0.0 --port=80 --root=/tmp --auth=anonymous\r\n    Running without configuration file.\r\n    10:54:16.597 - INFO    : WsgiDAV/4.0.0-a1 Python/3.9.1 macOS-12.0.1-x86_64-i386-64bit\r\n    10:54:16.598 - INFO    : Registered DAV providers by route:\r\n    10:54:16.598 - INFO    :   - '/:dir_browser': FilesystemProvider for path '/Users/martin/prj/git/wsgidav/wsgidav/dir_browser/htdocs' (Read-Only) (anonymous)\r\n    10:54:16.599 - INFO    :   - '/': FilesystemProvider for path '/tmp' (Read-Write) (anonymous)\r\n    10:54:16.599 - WARNING : Basic authentication is enabled: It is highly recommended to enable SSL.\r\n    10:54:16.599 - WARNING : Share '/' will allow anonymous write access.\r\n    10:54:16.813 - INFO    : Running WsgiDAV/4.0.0-a1 Cheroot/8.5.2 Python 3.9.1\r\n    10:54:16.813 - INFO    : Serving on http://0.0.0.0:80 ...\r\n    ```\r\n    Run `wsgidav --help` for a list of available options.<br>\r\n\r\n  - The [python-pam](https://github.com/FirefighterBlu3/python-pam) library is \r\n    needed as extra requirement if pam-login authentication is used on Linux \r\n    or OSX:\r\n    ```\r\n    $ pip install wsgidav[pam]\r\n    $ wsgidav --host=0.0.0.0 --port=8080 --root=/tmp --auth=pam-login\r\n    ```\r\n\r\n  - **Note:** Windows users may prefer the\r\n    [MSI Installer](https://github.com/mar10/wsgidav/releases/latest)\r\n    (see <kbd>Assets</kbd> section).\r\n\r\n  - WebDAV is a superset of HTTP, so WsgiDAV is also a performant, multi-threaded\r\n    web server with SSL support.\r\n\r\n  - WsgiDAV is also a Python library that implements the WSGI protocol and can\r\n\t  be run behind any WSGI compliant web server.<br>\r\n\r\n  - WsgiDAV is implemented as a configurable stack of WSGI middleware\r\n    applications.<br>\r\n    Its open architecture allows to extend the functionality and integrate\r\n    WebDAV services into your project.<br>\r\n  \tTypical use cases are:\r\n  \t- Expose data structures as virtual, editable file systems.\r\n  \t- Allow online editing of MS Office documents.\r\n\r\n\r\n## Status\r\n\r\n[![Latest Version](https://img.shields.io/pypi/v/wsgidav.svg)](https://pypi.python.org/pypi/WsgiDAV/)\r\nSee the ([change log](https://github.com/mar10/wsgidav/blob/master/CHANGELOG.md)) for details.\r\n\r\n**Note:** Release 4.0 introduces some refactorings and breaking changes.<br>\r\n  See the ([change log](https://github.com/mar10/wsgidav/blob/master/CHANGELOG.md)) for details.\r\n\r\n\r\n## More info\r\n\r\n  * [Read The Docs](http://wsgidav.rtfd.org) for details.\r\n  * [Discussion Group](https://github.com/mar10/wsgidav/discussions)\r\n  * [Stackoverflow](http://stackoverflow.com/questions/tagged/wsgidav)\r\n\r\n\r\n## Credits\r\n\r\nContributors:\r\n\r\n  * WsgiDAV is a [refactored version](https://github.com/mar10/wsgidav/blob/master/docs/source/changelog04.md)\r\n    of [PyFileServer 0.2](https://github.com/cwho/pyfileserver),\r\n    Copyright (c) 2005 Ho Chun Wei.<br>\r\n    Chun gave his approval to change the license from LGPL to MIT-License for\r\n    this project.\r\n  * <https://github.com/mar10/wsgidav/contributors>\r\n  * Markus Majer for providing the logo (a mixture of the international\r\n    maritime signal flag for 'W (Whiskey)' and a dove.)\r\n\r\n\r\nAny kind of feedback is very welcome!<br>\r\nHave fun  :-)<br>\r\nMartin\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Generic and extendable WebDAV server based on WSGI",
    "version": "4.3.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/mar10/wsgidav/issues",
        "Discussions": "https://github.com/mar10/wsgidav/discussions",
        "Documentation": "https://wsgidav.readthedocs.io",
        "Download": "https://github.com/mar10/wsgidav/releases/latest",
        "Homepage": "https://github.com/mar10/wsgidav",
        "Source Code": "https://github.com/mar10/wsgidav"
    },
    "split_keywords": [
        "web",
        " wsgi",
        " webdav",
        " application",
        " server"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63f459f6a8cc97e82ebecf943ebf379f0fb3b1fa1ec673445e030a632a0993df",
                "md5": "b20ddec5654ec80ffc1ba462999722a6",
                "sha256": "9645fdb799332840c3646dddbf0750624166da719285113e5d17c1f2d1ccd40a"
            },
            "downloads": -1,
            "filename": "WsgiDAV-4.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b20ddec5654ec80ffc1ba462999722a6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 172710,
            "upload_time": "2024-03-29T13:54:49",
            "upload_time_iso_8601": "2024-03-29T13:54:49.811162Z",
            "url": "https://files.pythonhosted.org/packages/63/f4/59f6a8cc97e82ebecf943ebf379f0fb3b1fa1ec673445e030a632a0993df/WsgiDAV-4.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29e920c31025286ed18282af8bd91f45ea7584cb137172ab7add92d220ce4883",
                "md5": "16ad5891e19861d87bfe6544f15910a4",
                "sha256": "4c3c24ac01b656a9edcb0014f31717ca8b9a3ec7d7cd9adc39d9ce1b00bfe759"
            },
            "downloads": -1,
            "filename": "WsgiDAV-4.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "16ad5891e19861d87bfe6544f15910a4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 167847,
            "upload_time": "2024-03-29T13:54:52",
            "upload_time_iso_8601": "2024-03-29T13:54:52.946917Z",
            "url": "https://files.pythonhosted.org/packages/29/e9/20c31025286ed18282af8bd91f45ea7584cb137172ab7add92d220ce4883/WsgiDAV-4.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-29 13:54:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mar10",
    "github_project": "wsgidav",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "defusedxml",
            "specs": [
                [
                    "~=",
                    "0.7.1"
                ]
            ]
        },
        {
            "name": "Jinja2",
            "specs": [
                [
                    "~=",
                    "3.0"
                ]
            ]
        },
        {
            "name": "json5",
            "specs": [
                [
                    "~=",
                    "0.8.5"
                ]
            ]
        },
        {
            "name": "python-pam",
            "specs": [
                [
                    "~=",
                    "2.0"
                ]
            ]
        },
        {
            "name": "PyYAML",
            "specs": [
                [
                    "~=",
                    "6.0"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "wsgidav"
}
        
Elapsed time: 0.23434s