Name | aiowebdav2 JSON |
Version |
0.2.1
JSON |
| download |
home_page | None |
Summary | Async Python 3 client for WebDAV, based on aiowebdav and https://github.com/ezhov-evgeny/webdav-client-python-3 |
upload_time | 2025-02-15 09:32:27 |
maintainer | None |
docs_url | None |
author | Jan-Philipp Benecke |
requires_python | <4.0,>=3.11 |
license | MIT |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
aiowebdav2
=========
[![GitHub Release][releases-shield]][releases]
[![Python Versions][python-versions-shield]][pypi]
![Project Stage][project-stage-shield]
![Project Maintenance][maintenance-shield]
[![License][license-shield]](LICENSE.md)
[![Build Status][build-shield]][build]
[![Code Coverage][codecov-shield]][codecov]
`aiowebdav2` is an asyncio based Python 3 client for WebDAV.
It is based on https://github.com/designerror/webdav-client-python and https://github.com/synodriver/aiowebdav.
Installation
------------
```bash
$ pip install aiowebdav2
```
Sample Usage
------------
```python
import asyncio
from aiowebdav2.client import Client
options = {
'webdav_hostname': "https://webdav.server.ru",
'webdav_login': "login",
'webdav_password': "password",
"disable_check": True
}
async def main():
client = Client(options)
client.verify = False # To not check SSL certificates (Default = True)
await client.execute_request("mkdir", 'directory_name')
asyncio.run(main())
```
Webdav API
==========
Webdav API is a set of webdav actions of work with cloud storage. This set includes the following actions:
`check`, `free`, `info`, `list`, `mkdir`, `clean`, `copy`, `move`, `download`, `upload`, `publish` and `unpublish`.
**Configuring the client**
Required key is host name or IP address of the WevDAV-server with param name `webdav_hostname`.
For authentication in WebDAV server use `webdav_login`, `webdav_password`.
For an anonymous login do not specify auth properties.
```python
from aiowebdav2.client import Client
options = {
'webdav_hostname': "https://webdav.server.ru",
'webdav_login': "login",
'webdav_password': "password"
}
client = Client(options)
```
If your server does not support `HEAD` method or there are other reasons to override default WebDAV methods for actions use a dictionary option `webdav_override_methods`.
The key should be in the following list: `check`, `free`, `info`, `list`, `mkdir`, `clean`, `copy`, `move`, `download`, `upload`,
`publish` and `unpublish`. The value should a string name of WebDAV method, for example `GET`.
```python
from aiowebdav2.client import Client
options = {
'webdav_hostname': "https://webdav.server.ru",
'webdav_login': "login",
'webdav_password': "password",
'webdav_override_methods': {
'check': 'GET'
}
}
client = Client(options)
```
For configuring a requests timeout you can use an option `webdav_timeout` with int value in seconds, by default the timeout is set to 30 seconds.
```python
from aiowebdav2.client import Client
options = {
'webdav_hostname': "https://webdav.server.ru",
'webdav_login': "login",
'webdav_password': "password",
'webdav_timeout': 30
}
client = Client(options)
```
When a proxy server you need to specify settings to connect through it.
```python
from aiowebdav2.client import Client
options = {
'webdav_hostname': "https://webdav.server.ru",
'webdav_login': "w_login",
'webdav_password': "w_password",
'webdav_proxy': "http://127.0.0.1:8080",
'webdav_proxy_auth': "xxx",
}
client = Client(options)
```
If you want to use the certificate path to certificate and private key is defined as follows:
```python
from aiowebdav2.client import Client
options = {
'webdav_hostname': "https://webdav.server.ru",
'webdav_login': "w_login",
'webdav_password': "w_password",
'webdav_ssl': 'sslcontext'
}
client = Client(options)
```
Or you want to limit the speed or turn on verbose mode:
```python
options = {
...
'recv_speed' : 3000000,
'send_speed' : 3000000,
'verbose' : True
}
client = Client(options)
```
recv_speed: rate limit data download speed in Bytes per second. Defaults to unlimited speed.
send_speed: rate limit data upload speed in Bytes per second. Defaults to unlimited speed.
verbose: set verbose mode on/off. By default verbose mode is off.
Also if your server does not support `check` it is possible to disable it:
```python
options = {
...
'disable_check': True
}
client = Client(options)
```
By default, checking of remote resources is enabled.
For configuring chunk size of content downloading use `chunk_size` param, by default it is `65536`
```python
options = {
...
'chunk_size': 65536
}
client = Client(options)
```
**Asynchronous methods**
```python
# Checking existence of the resource
await client.check("dir1/file1")
await client.check("dir1")
```
```python
# Get information about the resource
await client.info("dir1/file1")
await client.info("dir1/")
```
```python
# Check free space
free_size = await client.free()
```
```python
# Get a list of resources
files1 = await client.list()
files2 = await client.list("dir1")
files3 = await client.list("dir1", get_info=True) # returns a list of dictionaries with files details
```
```python
# Create directory
await client.mkdir("dir1/dir2")
```
```python
# Delete resource
await client.clean("dir1/dir2")
```
```python
# Copy resource
await client.copy(remote_path_from="dir1/file1", remote_path_to="dir2/file1")
await client.copy(remote_path_from="dir2", remote_path_to="dir3")
```
```python
# Move resource
await client.move(remote_path_from="dir1/file1", remote_path_to="dir2/file1")
await client.move(remote_path_from="dir2", remote_path_to="dir3")
```
```python
# Download a resource
await client.download(remote_path="dir1/file1", local_path="~/Downloads/file1")
await client.download(remote_path="dir1/dir2/", local_path="~/Downloads/dir2/")
```
```python
# Upload resource
await client.upload(remote_path="dir1/file1", local_path="~/Documents/file1")
await client.upload(remote_path="dir1/dir2/", local_path="~/Documents/dir2/")
```
```python
# Publish the resource
link = await client.publish("dir1/file1")
link = await client.publish("dir2")
```
```python
# Unpublish resource
await client.unpublish("dir1/file1")
await client.unpublish("dir2")
```
```python
# Exception handling
from aiowebdav.exceptions import WebDavException
try:
...
except WebDavException as exception:
...
```
```python
# Get the missing files
await client.pull(remote_directory='dir1', local_directory='~/Documents/dir1')
```
```python
# Send missing files
await client.push(remote_directory='dir1', local_directory='~/Documents/dir1')
```
```python
# Unload resource
kwargs = {
'remote_path': "dir1/file1",
'local_path': "~/Downloads/file1",
'callback': callback
}
client.upload_async(**kwargs)
kwargs = {
'remote_path': "dir1/dir2/",
'local_path': "~/Downloads/dir2/",
'callback': callback
}
client.upload_async(**kwargs)
```
Resource API
============
Resource API using the concept of OOP that enables cloud-level resources.
```python
# Get a resource
res1 = client.resource("dir1/file1")
```
```python
# Work with the resource
await res1.rename("file2")
await res1.move("dir1/file2")
await res1.copy("dir2/file1")
info = await res1.info()
await res1.read_from(buffer)
await res1.read(local_path="~/Documents/file1")
await res1.write_to(buffer)
await res1.write(local_path="~/Downloads/file1")
```
## Changelog & Releases
This repository keeps a change log using [GitHub's releases][releases]
functionality. The format of the log is based on
[Keep a Changelog][keepchangelog].
Releases are based on [Semantic Versioning][semver], and use the format
of `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented
based on the following:
- `MAJOR`: Incompatible or major changes.
- `MINOR`: Backwards-compatible new features and enhancements.
- `PATCH`: Backwards-compatible bugfixes and package updates.
## Contributing
This is an active open-source project. I am always open to people who want to
use the code or contribute to it.
Thank you for being involved! :heart_eyes:
## Setting up development environment
This Python project is fully managed using the [Poetry][poetry] dependency manager. But also relies on the use of NodeJS for certain checks during development.
You need at least:
- Python 3.11+
- [Poetry][poetry-install]
- NodeJS 20+ (including NPM)
To install all packages, including all development requirements:
```bash
npm install
poetry install
```
As this repository uses the [pre-commit][pre-commit] framework, all changes
are linted and tested with each commit. You can run all checks and tests
manually, using the following command:
```bash
poetry run pre-commit run --all-files
```
To run just the Python tests:
```bash
poetry run pytest
```
## Authors & contributors
The content is by [Jan-Philipp Benecke][jpbede].
For a full list of all authors and contributors,
check [the contributor's page][contributors].
## License
MIT License
Copyright (c) 2025 Jan-Philipp Benecke
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
[build-shield]: https://github.com/jpbede/aiowebdav2/actions/workflows/release.yml/badge.svg
[build]: https://github.com/jpbede/aiowebdav2/actions
[codecov-shield]: https://codecov.io/gh/jpbede/aiowebdav2/branch/main/graph/badge.svg
[codecov]: https://codecov.io/gh/jpbede/aiowebdav2
[commits-shield]: https://img.shields.io/github/commit-activity/y/jpbede/aiowebdav2.svg
[commits]: https://github.com/jpbede/aiowebdav2/commits/main
[contributors]: https://github.com/jpbede/aiowebdav2/graphs/contributors
[jpbede]: https://github.com/jpbede
[keepchangelog]: http://keepachangelog.com/en/1.0.0/
[license-shield]: https://img.shields.io/github/license/jpbede/aiowebdav2.svg
[maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg
[poetry-install]: https://python-poetry.org/docs/#installation
[poetry]: https://python-poetry.org
[pre-commit]: https://pre-commit.com/
[project-stage-shield]: https://img.shields.io/badge/project%20stage-stable-green.svg
[python-versions-shield]: https://img.shields.io/pypi/pyversions/aiowebdav2
[releases-shield]: https://img.shields.io/github/release/jpbede/aiowebdav2.svg
[releases]: https://github.com/jpbede/aiowebdav2/releases
[semver]: http://semver.org/spec/v2.0.0.html
[pypi]: https://pypi.org/project/aiowebdav2/
Raw data
{
"_id": null,
"home_page": null,
"name": "aiowebdav2",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.11",
"maintainer_email": null,
"keywords": null,
"author": "Jan-Philipp Benecke",
"author_email": "jan-philipp@bnck.me",
"download_url": "https://files.pythonhosted.org/packages/29/28/9cc1183a0c6852d47b25d53e02aa164ffc22796ba3864d07185d7d3ee6a6/aiowebdav2-0.2.1.tar.gz",
"platform": null,
"description": "aiowebdav2\n=========\n[![GitHub Release][releases-shield]][releases]\n[![Python Versions][python-versions-shield]][pypi]\n![Project Stage][project-stage-shield]\n![Project Maintenance][maintenance-shield]\n[![License][license-shield]](LICENSE.md)\n\n[![Build Status][build-shield]][build]\n[![Code Coverage][codecov-shield]][codecov]\n\n`aiowebdav2` is an asyncio based Python 3 client for WebDAV.\n\nIt is based on https://github.com/designerror/webdav-client-python and https://github.com/synodriver/aiowebdav.\n\nInstallation\n------------\n```bash\n$ pip install aiowebdav2\n```\n\nSample Usage\n------------\n\n```python\nimport asyncio\nfrom aiowebdav2.client import Client\n\noptions = {\n 'webdav_hostname': \"https://webdav.server.ru\",\n 'webdav_login': \"login\",\n 'webdav_password': \"password\",\n \"disable_check\": True\n}\n\nasync def main():\n client = Client(options)\n client.verify = False # To not check SSL certificates (Default = True)\n await client.execute_request(\"mkdir\", 'directory_name')\nasyncio.run(main())\n```\n\nWebdav API\n==========\n\nWebdav API is a set of webdav actions of work with cloud storage. This set includes the following actions:\n`check`, `free`, `info`, `list`, `mkdir`, `clean`, `copy`, `move`, `download`, `upload`, `publish` and `unpublish`.\n\n**Configuring the client**\n\nRequired key is host name or IP address of the WevDAV-server with param name `webdav_hostname`.\nFor authentication in WebDAV server use `webdav_login`, `webdav_password`.\nFor an anonymous login do not specify auth properties.\n\n```python\nfrom aiowebdav2.client import Client\n\noptions = {\n 'webdav_hostname': \"https://webdav.server.ru\",\n 'webdav_login': \"login\",\n 'webdav_password': \"password\"\n}\nclient = Client(options)\n```\n\nIf your server does not support `HEAD` method or there are other reasons to override default WebDAV methods for actions use a dictionary option `webdav_override_methods`.\nThe key should be in the following list: `check`, `free`, `info`, `list`, `mkdir`, `clean`, `copy`, `move`, `download`, `upload`,\n `publish` and `unpublish`. The value should a string name of WebDAV method, for example `GET`.\n\n```python\nfrom aiowebdav2.client import Client\n\noptions = {\n 'webdav_hostname': \"https://webdav.server.ru\",\n 'webdav_login': \"login\",\n 'webdav_password': \"password\",\n 'webdav_override_methods': {\n 'check': 'GET'\n }\n\n}\nclient = Client(options)\n```\n\nFor configuring a requests timeout you can use an option `webdav_timeout` with int value in seconds, by default the timeout is set to 30 seconds.\n\n```python\nfrom aiowebdav2.client import Client\n\noptions = {\n 'webdav_hostname': \"https://webdav.server.ru\",\n 'webdav_login': \"login\",\n 'webdav_password': \"password\",\n 'webdav_timeout': 30\n}\nclient = Client(options)\n```\n\nWhen a proxy server you need to specify settings to connect through it.\n\n```python\nfrom aiowebdav2.client import Client\n\noptions = {\n 'webdav_hostname': \"https://webdav.server.ru\",\n 'webdav_login': \"w_login\",\n 'webdav_password': \"w_password\",\n 'webdav_proxy': \"http://127.0.0.1:8080\",\n 'webdav_proxy_auth': \"xxx\",\n}\nclient = Client(options)\n```\n\nIf you want to use the certificate path to certificate and private key is defined as follows:\n\n```python\nfrom aiowebdav2.client import Client\n\noptions = {\n 'webdav_hostname': \"https://webdav.server.ru\",\n 'webdav_login': \"w_login\",\n 'webdav_password': \"w_password\",\n 'webdav_ssl': 'sslcontext'\n}\nclient = Client(options)\n```\n\nOr you want to limit the speed or turn on verbose mode:\n\n```python\noptions = {\n ...\n 'recv_speed' : 3000000,\n 'send_speed' : 3000000,\n 'verbose' : True\n}\nclient = Client(options)\n```\n\nrecv_speed: rate limit data download speed in Bytes per second. Defaults to unlimited speed.\nsend_speed: rate limit data upload speed in Bytes per second. Defaults to unlimited speed.\nverbose: set verbose mode on/off. By default verbose mode is off.\n\nAlso if your server does not support `check` it is possible to disable it:\n\n```python\noptions = {\n ...\n 'disable_check': True\n}\nclient = Client(options)\n```\n\nBy default, checking of remote resources is enabled.\n\nFor configuring chunk size of content downloading use `chunk_size` param, by default it is `65536`\n\n```python\noptions = {\n ...\n 'chunk_size': 65536\n}\nclient = Client(options)\n```\n\n**Asynchronous methods**\n\n```python\n# Checking existence of the resource\n\nawait client.check(\"dir1/file1\")\nawait client.check(\"dir1\")\n```\n\n```python\n# Get information about the resource\n\nawait client.info(\"dir1/file1\")\nawait client.info(\"dir1/\")\n```\n\n```python\n# Check free space\n\nfree_size = await client.free()\n```\n\n```python\n# Get a list of resources\n\nfiles1 = await client.list()\nfiles2 = await client.list(\"dir1\")\nfiles3 = await client.list(\"dir1\", get_info=True) # returns a list of dictionaries with files details\n```\n\n```python\n# Create directory\n\nawait client.mkdir(\"dir1/dir2\")\n```\n\n```python\n# Delete resource\n\nawait client.clean(\"dir1/dir2\")\n```\n\n```python\n# Copy resource\n\nawait client.copy(remote_path_from=\"dir1/file1\", remote_path_to=\"dir2/file1\")\nawait client.copy(remote_path_from=\"dir2\", remote_path_to=\"dir3\")\n```\n\n```python\n# Move resource\n\nawait client.move(remote_path_from=\"dir1/file1\", remote_path_to=\"dir2/file1\")\nawait client.move(remote_path_from=\"dir2\", remote_path_to=\"dir3\")\n```\n\n```python\n# Download a resource\n\nawait client.download(remote_path=\"dir1/file1\", local_path=\"~/Downloads/file1\")\nawait client.download(remote_path=\"dir1/dir2/\", local_path=\"~/Downloads/dir2/\")\n```\n\n```python\n# Upload resource\n\nawait client.upload(remote_path=\"dir1/file1\", local_path=\"~/Documents/file1\")\nawait client.upload(remote_path=\"dir1/dir2/\", local_path=\"~/Documents/dir2/\")\n```\n\n```python\n# Publish the resource\n\nlink = await client.publish(\"dir1/file1\")\nlink = await client.publish(\"dir2\")\n```\n\n```python\n# Unpublish resource\n\nawait client.unpublish(\"dir1/file1\")\nawait client.unpublish(\"dir2\")\n```\n\n```python\n# Exception handling\n\nfrom aiowebdav.exceptions import WebDavException\n\ntry:\n ...\nexcept WebDavException as exception:\n...\n```\n\n```python\n# Get the missing files\n\nawait client.pull(remote_directory='dir1', local_directory='~/Documents/dir1')\n```\n\n```python\n# Send missing files\n\nawait client.push(remote_directory='dir1', local_directory='~/Documents/dir1')\n```\n\n```python\n# Unload resource\n\nkwargs = {\n 'remote_path': \"dir1/file1\",\n 'local_path': \"~/Downloads/file1\",\n 'callback': callback\n}\nclient.upload_async(**kwargs)\n\nkwargs = {\n 'remote_path': \"dir1/dir2/\",\n 'local_path': \"~/Downloads/dir2/\",\n 'callback': callback\n}\nclient.upload_async(**kwargs)\n```\n\nResource API\n============\n\nResource API using the concept of OOP that enables cloud-level resources.\n\n```python\n# Get a resource\n\nres1 = client.resource(\"dir1/file1\")\n```\n\n```python\n# Work with the resource\n\nawait res1.rename(\"file2\")\nawait res1.move(\"dir1/file2\")\nawait res1.copy(\"dir2/file1\")\ninfo = await res1.info()\nawait res1.read_from(buffer)\nawait res1.read(local_path=\"~/Documents/file1\")\nawait res1.write_to(buffer)\nawait res1.write(local_path=\"~/Downloads/file1\")\n\n```\n\n## Changelog & Releases\n\nThis repository keeps a change log using [GitHub's releases][releases]\nfunctionality. The format of the log is based on\n[Keep a Changelog][keepchangelog].\n\nReleases are based on [Semantic Versioning][semver], and use the format\nof `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented\nbased on the following:\n\n- `MAJOR`: Incompatible or major changes.\n- `MINOR`: Backwards-compatible new features and enhancements.\n- `PATCH`: Backwards-compatible bugfixes and package updates.\n\n## Contributing\n\nThis is an active open-source project. I am always open to people who want to\nuse the code or contribute to it.\n\nThank you for being involved! :heart_eyes:\n\n## Setting up development environment\n\nThis Python project is fully managed using the [Poetry][poetry] dependency manager. But also relies on the use of NodeJS for certain checks during development.\n\nYou need at least:\n\n- Python 3.11+\n- [Poetry][poetry-install]\n- NodeJS 20+ (including NPM)\n\nTo install all packages, including all development requirements:\n\n```bash\nnpm install\npoetry install\n```\n\nAs this repository uses the [pre-commit][pre-commit] framework, all changes\nare linted and tested with each commit. You can run all checks and tests\nmanually, using the following command:\n\n```bash\npoetry run pre-commit run --all-files\n```\n\nTo run just the Python tests:\n\n```bash\npoetry run pytest\n```\n\n## Authors & contributors\n\nThe content is by [Jan-Philipp Benecke][jpbede].\n\nFor a full list of all authors and contributors,\ncheck [the contributor's page][contributors].\n\n## License\n\nMIT License\n\nCopyright (c) 2025 Jan-Philipp Benecke\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n[build-shield]: https://github.com/jpbede/aiowebdav2/actions/workflows/release.yml/badge.svg\n[build]: https://github.com/jpbede/aiowebdav2/actions\n[codecov-shield]: https://codecov.io/gh/jpbede/aiowebdav2/branch/main/graph/badge.svg\n[codecov]: https://codecov.io/gh/jpbede/aiowebdav2\n[commits-shield]: https://img.shields.io/github/commit-activity/y/jpbede/aiowebdav2.svg\n[commits]: https://github.com/jpbede/aiowebdav2/commits/main\n[contributors]: https://github.com/jpbede/aiowebdav2/graphs/contributors\n[jpbede]: https://github.com/jpbede\n[keepchangelog]: http://keepachangelog.com/en/1.0.0/\n[license-shield]: https://img.shields.io/github/license/jpbede/aiowebdav2.svg\n[maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg\n[poetry-install]: https://python-poetry.org/docs/#installation\n[poetry]: https://python-poetry.org\n[pre-commit]: https://pre-commit.com/\n[project-stage-shield]: https://img.shields.io/badge/project%20stage-stable-green.svg\n[python-versions-shield]: https://img.shields.io/pypi/pyversions/aiowebdav2\n[releases-shield]: https://img.shields.io/github/release/jpbede/aiowebdav2.svg\n[releases]: https://github.com/jpbede/aiowebdav2/releases\n[semver]: http://semver.org/spec/v2.0.0.html\n[pypi]: https://pypi.org/project/aiowebdav2/\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Async Python 3 client for WebDAV, based on aiowebdav and https://github.com/ezhov-evgeny/webdav-client-python-3",
"version": "0.2.1",
"project_urls": {
"Bug Tracker": "https://github.com/jpbede/aiowebdav2/issues",
"Changelog": "https://github.com/jpbede/aiowebdav2/releases",
"Repository": "https://github.com/jpbede/aiowebdav2"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "5da5cf0aa37ebd2ba4a0773dc1664e9bb49ce3ab0c6be79e2c5603d16edd7330",
"md5": "7e077c71629a4d87fb038b619ba34f9a",
"sha256": "e9dc5b661cef19df35707190cf0ba144be61d7a6543ee5f6de12a25151a05f00"
},
"downloads": -1,
"filename": "aiowebdav2-0.2.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "7e077c71629a4d87fb038b619ba34f9a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.11",
"size": 20322,
"upload_time": "2025-02-15T09:32:26",
"upload_time_iso_8601": "2025-02-15T09:32:26.389480Z",
"url": "https://files.pythonhosted.org/packages/5d/a5/cf0aa37ebd2ba4a0773dc1664e9bb49ce3ab0c6be79e2c5603d16edd7330/aiowebdav2-0.2.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "29289cc1183a0c6852d47b25d53e02aa164ffc22796ba3864d07185d7d3ee6a6",
"md5": "83d71693a8d300305b096fa7962a9751",
"sha256": "c527ff987da39959dc204348d752dfe2b97691a4fa74db55bb43c8253a56e7a3"
},
"downloads": -1,
"filename": "aiowebdav2-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "83d71693a8d300305b096fa7962a9751",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.11",
"size": 21629,
"upload_time": "2025-02-15T09:32:27",
"upload_time_iso_8601": "2025-02-15T09:32:27.968745Z",
"url": "https://files.pythonhosted.org/packages/29/28/9cc1183a0c6852d47b25d53e02aa164ffc22796ba3864d07185d7d3ee6a6/aiowebdav2-0.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-15 09:32:27",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jpbede",
"github_project": "aiowebdav2",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "aiowebdav2"
}