xlwings-utils 25.0.3.post0__tar.gz → 25.0.3.post2__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.

Potentially problematic release.


This version of xlwings-utils might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xlwings_utils
3
- Version: 25.0.3.post0
3
+ Version: 25.0.3.post2
4
4
  Summary: xlwings_utils
5
5
  Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/salabim/xlwings_utils
@@ -10,7 +10,6 @@ Classifier: Programming Language :: Python :: 3 :: Only
10
10
  Requires-Python: >=3.9
11
11
  Description-Content-Type: text/markdown
12
12
  Requires-Dist: dropbox
13
- Requires-Dist: ssl
14
13
 
15
14
  <img src="https://www.salabim.org/xlwings_utils_logo2.png">
16
15
 
@@ -10,12 +10,11 @@ authors = [
10
10
  { name = "Ruud van der Ham", email = "rt.van.der.ham@gmail.com" },
11
11
  ]
12
12
  description = "xlwings_utils"
13
- version = "25.0.3.post0"
13
+ version = "25.0.3.post2"
14
14
  readme = "README.md"
15
15
  requires-python = ">=3.9"
16
16
  dependencies = [
17
17
  "dropbox",
18
- "ssl",
19
18
  ]
20
19
  classifiers = [
21
20
  "Development Status :: 5 - Production/Stable",
@@ -26,7 +26,7 @@ except ImportError:
26
26
  missing = object()
27
27
 
28
28
 
29
- def dropbox_init(refresh_token=missing, app_key=missing, app_secret=missing, max_retries_on_error=4):
29
+ def dropbox_init(refresh_token=missing, app_key=missing, app_secret=missing, **kwargs):
30
30
  """
31
31
  dropbox initialize
32
32
 
@@ -86,7 +86,7 @@ def dropbox_init(refresh_token=missing, app_key=missing, app_secret=missing, max
86
86
  else:
87
87
  raise ValueError("no APP_SECRET found in environment.")
88
88
 
89
- dbx = dropbox.Dropbox(oauth2_refresh_token=refresh_token, app_key=app_key, app_secret=app_secret, max_retries_on_error=max_retries_on_error)
89
+ dbx = dropbox.Dropbox(oauth2_refresh_token=refresh_token, app_key=app_key, app_secret=app_secret, **kwargs)
90
90
  try:
91
91
  dbx.files_list_folder(path="") # just to test proper credentials
92
92
  except dropbox.exceptions.AuthError:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xlwings_utils
3
- Version: 25.0.3.post0
3
+ Version: 25.0.3.post2
4
4
  Summary: xlwings_utils
5
5
  Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/salabim/xlwings_utils
@@ -10,7 +10,6 @@ Classifier: Programming Language :: Python :: 3 :: Only
10
10
  Requires-Python: >=3.9
11
11
  Description-Content-Type: text/markdown
12
12
  Requires-Dist: dropbox
13
- Requires-Dist: ssl
14
13
 
15
14
  <img src="https://www.salabim.org/xlwings_utils_logo2.png">
16
15