efs-cli 1.0.2__tar.gz → 1.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: efs-cli
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: EepyFileServer API CLI written in Python
5
5
  Author: maxie
6
6
  License-Expression: MIT
@@ -17,7 +17,7 @@ Requires-Python: >=3.10
17
17
  Description-Content-Type: text/markdown
18
18
  License-File: LICENSE
19
19
  Requires-Dist: requests>=2.30
20
- Requires-Dist: efs-wrapper
20
+ Requires-Dist: efs-wrapper>=1.0.3
21
21
  Dynamic: license-file
22
22
 
23
23
  # efs-cli (formerly eepyfileserver-cli)
@@ -1,5 +1,5 @@
1
1
  [build-system]
2
- requires = ["setuptools >= 77.0.3", "requests >= 2.30", "efs-wrapper"]
2
+ requires = ["setuptools >= 77.0.3", "requests >= 2.30", "efs-wrapper >= 1.0.3"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
@@ -12,7 +12,7 @@ readme = "README.md"
12
12
  requires-python = ">=3.10"
13
13
  dependencies = [
14
14
  "requests >= 2.30",
15
- "efs-wrapper"
15
+ "efs-wrapper >= 1.0.3"
16
16
  ]
17
17
  classifiers = [
18
18
  "Programming Language :: Python :: 3",
@@ -35,4 +35,4 @@ Homepage = "https://codeberg.org/maxeepy/eepyfileserver-cli"
35
35
  Issues = "https://codeberg.org/maxeepy/eepyfileserver-cli/issues"
36
36
 
37
37
  [project.scripts]
38
- efs-cli = "efs_cli.cli:main"
38
+ efs-cli = "efs_cli.cli:main"
@@ -0,0 +1,2 @@
1
+ __version__ = "1.0.3"
2
+
@@ -28,7 +28,7 @@ def init_api():
28
28
 
29
29
  base_url = conf.get("base_url")
30
30
  password = conf.get("password", None)
31
- efs = EepyFileServerPublic(base_url) if password is None else EepyFileServer(base_url, password)
31
+ efs = EepyFileServerPublic(base_url, ignore_initialization = True) if password is None else EepyFileServer(base_url, password, ignore_initialization = True)
32
32
  return efs
33
33
 
34
34
  def auth(base_url, password, **__):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: efs-cli
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: EepyFileServer API CLI written in Python
5
5
  Author: maxie
6
6
  License-Expression: MIT
@@ -17,7 +17,7 @@ Requires-Python: >=3.10
17
17
  Description-Content-Type: text/markdown
18
18
  License-File: LICENSE
19
19
  Requires-Dist: requests>=2.30
20
- Requires-Dist: efs-wrapper
20
+ Requires-Dist: efs-wrapper>=1.0.3
21
21
  Dynamic: license-file
22
22
 
23
23
  # efs-cli (formerly eepyfileserver-cli)
@@ -0,0 +1,2 @@
1
+ requests>=2.30
2
+ efs-wrapper>=1.0.3
@@ -1,2 +0,0 @@
1
- __version__ = "1.0.2"
2
-
@@ -1,2 +0,0 @@
1
- requests>=2.30
2
- efs-wrapper
File without changes
File without changes
File without changes