{"id":19494600,"url":"https://github.com/jrialland/asgi_dav","last_synced_at":"2026-04-15T16:32:14.500Z","repository":{"id":246905668,"uuid":"823808339","full_name":"jrialland/asgi_dav","owner":"jrialland","description":"ASGI WebDAV application","archived":false,"fork":false,"pushed_at":"2024-07-11T18:05:52.000Z","size":112,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-04T07:06:33.844Z","etag":null,"topics":["asgi","fastapi","webdav","webdav-server"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jrialland.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-03T19:00:58.000Z","updated_at":"2024-07-11T18:05:56.000Z","dependencies_parsed_at":"2024-07-11T20:02:18.609Z","dependency_job_id":null,"html_url":"https://github.com/jrialland/asgi_dav","commit_stats":null,"previous_names":["jrialland/asgi_dav"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jrialland/asgi_dav","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jrialland%2Fasgi_dav","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jrialland%2Fasgi_dav/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jrialland%2Fasgi_dav/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jrialland%2Fasgi_dav/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jrialland","download_url":"https://codeload.github.com/jrialland/asgi_dav/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jrialland%2Fasgi_dav/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31849733,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asgi","fastapi","webdav","webdav-server"],"created_at":"2024-11-10T21:30:48.652Z","updated_at":"2026-04-15T16:32:14.479Z","avatar_url":"https://github.com/jrialland.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overview\n\nThis project is a minimalistic ASGI module that implements a WebDAV server. The focus is on simplicity rather than completeness, making it an easy-to-use solution for basic WebDAV needs.\n\n# Features\n\nSimplicity over Completeness: Designed to be straightforward and easy to use.\n\nBasic WebDAV Functionality: Supports essential WebDAV operations.\n\nTested with Windows 11 Client: Ensured compatibility with the built-in WebDAV client in Windows 11.\n\n# Limitations\n\nNo Resource Locking: This server does not support resource locking (yet)\n\n# Dependencies\nASGI: The server is implemented as an ASGI module.\nfs Module: Utilizes the [pyfilesystem2](https://github.com/PyFilesystem/pyfilesystem2) module for filesystem access.\n\n# Installation\n```shell\npip install git+https://github.com/jrialland/asgi_dav@main\n```\n\n# Usage (uvicorn)\n```python\nfrom asgi_dav import DAVApp\nfrom fs.osfs import OSFS\nimport uvicorn\n\nuvicorn.run(DAVApp(OSFS(\".\")))\n```\n\n# Usage (fastapi)\n\n\n```python\nfrom fastapi import FastAPI\nfrom asgi_dav import DAVApp\nfrom fs.memoryfs import MemoryFS # use an in-RAM filesystem for the example\n\napp = FastAPI()\n\n# Mount the DAVApp as a sub-application in FastAPI.\napp.mount(\"/dav\", DAVApp(MemoryFS()))\n\n```\n\n# Events\n\nyour program can be notified of filesystem changes : \n\n```python\nfrom asgi_dav.events import FileUploadEvent\n\nasync def print_uploaded_file(evt:FileUploadEvent):\n    print(f\"File Uploaded : {evt.path}\")\n\ndavApp = DAVApp(MemoryFS()))\n\ndavApp.on('file.uploaded', print_uploaded_file)\n\n#[...]\n\n```\n\n# License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjrialland%2Fasgi_dav","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjrialland%2Fasgi_dav","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjrialland%2Fasgi_dav/lists"}