python3-cyberfusion-nextcloud-support 1.1.1.2.2__tar.gz → 1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/PKG-INFO +3 -3
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/pyproject.toml +2 -2
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/src/cyberfusion/NextCloudSupport/app.py +13 -0
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/src/python3_cyberfusion_nextcloud_support.egg-info/PKG-INFO +3 -3
- python3_cyberfusion_nextcloud_support-1.2/src/python3_cyberfusion_nextcloud_support.egg-info/requires.txt +1 -0
- python3_cyberfusion_nextcloud_support-1.1.1.2.2/src/python3_cyberfusion_nextcloud_support.egg-info/requires.txt +0 -1
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/README.md +0 -0
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/setup.cfg +0 -0
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/src/cyberfusion/NextCloudSupport/__init__.py +0 -0
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/src/cyberfusion/NextCloudSupport/_occ.py +0 -0
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/src/cyberfusion/NextCloudSupport/exceptions.py +0 -0
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/src/cyberfusion/NextCloudSupport/instance.py +0 -0
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/src/cyberfusion/NextCloudSupport/user.py +0 -0
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/src/python3_cyberfusion_nextcloud_support.egg-info/SOURCES.txt +0 -0
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/src/python3_cyberfusion_nextcloud_support.egg-info/dependency_links.txt +0 -0
- {python3_cyberfusion_nextcloud_support-1.1.1.2.2 → python3_cyberfusion_nextcloud_support-1.2}/src/python3_cyberfusion_nextcloud_support.egg-info/top_level.txt +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-cyberfusion-nextcloud-support
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2
|
|
4
4
|
Summary: Library for NextCloud.
|
|
5
5
|
Author-email: Cyberfusion <support@cyberfusion.io>
|
|
6
6
|
Project-URL: Source, https://github.com/CyberfusionIO/python3-cyberfusion-nextcloud-support
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
|
-
Requires-Dist: python3-cyberfusion-common~=2.
|
|
8
|
+
Requires-Dist: python3-cyberfusion-common~=2.12
|
|
9
9
|
|
|
10
10
|
# python3-cyberfusion-nextcloud-support
|
|
11
11
|
|
|
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python3-cyberfusion-nextcloud-support"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.2"
|
|
8
8
|
description = "Library for NextCloud."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
11
11
|
{ name = "Cyberfusion", email = "support@cyberfusion.io" },
|
|
12
12
|
]
|
|
13
13
|
dependencies = [
|
|
14
|
-
"python3-cyberfusion-common~=2.
|
|
14
|
+
"python3-cyberfusion-common~=2.12",
|
|
15
15
|
]
|
|
16
16
|
|
|
17
17
|
[project.urls]
|
|
@@ -141,3 +141,16 @@ class App:
|
|
|
141
141
|
return match.group(2)
|
|
142
142
|
|
|
143
143
|
return None
|
|
144
|
+
|
|
145
|
+
def __str__(self) -> str:
|
|
146
|
+
"""Get string representation."""
|
|
147
|
+
return (
|
|
148
|
+
self.name
|
|
149
|
+
+ " ("
|
|
150
|
+
+ self.version
|
|
151
|
+
+ ", available: "
|
|
152
|
+
+ str(self.available_version)
|
|
153
|
+
+ ", enabled: "
|
|
154
|
+
+ str(self.is_enabled)
|
|
155
|
+
+ ")"
|
|
156
|
+
)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-cyberfusion-nextcloud-support
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2
|
|
4
4
|
Summary: Library for NextCloud.
|
|
5
5
|
Author-email: Cyberfusion <support@cyberfusion.io>
|
|
6
6
|
Project-URL: Source, https://github.com/CyberfusionIO/python3-cyberfusion-nextcloud-support
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
|
-
Requires-Dist: python3-cyberfusion-common~=2.
|
|
8
|
+
Requires-Dist: python3-cyberfusion-common~=2.12
|
|
9
9
|
|
|
10
10
|
# python3-cyberfusion-nextcloud-support
|
|
11
11
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
python3-cyberfusion-common~=2.12
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
python3-cyberfusion-common~=2.10
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|