payme-pkg 3.0.14__tar.gz → 3.0.15__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 payme-pkg might be problematic. Click here for more details.

Files changed (34) hide show
  1. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/PKG-INFO +9 -3
  2. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/README.md +8 -2
  3. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/classes/initializer.py +13 -2
  4. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme_pkg.egg-info/PKG-INFO +9 -3
  5. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/setup.py +1 -1
  6. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/LICENSE.txt +0 -0
  7. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/__init__.py +0 -0
  8. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/admin.py +0 -0
  9. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/apps.py +0 -0
  10. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/classes/__init__.py +0 -0
  11. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/classes/cards.py +0 -0
  12. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/classes/client.py +0 -0
  13. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/classes/http.py +0 -0
  14. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/classes/receipts.py +0 -0
  15. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/const.py +0 -0
  16. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/exceptions/__init__.py +0 -0
  17. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/exceptions/general.py +0 -0
  18. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/exceptions/webhook.py +0 -0
  19. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/migrations/__init__.py +0 -0
  20. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/models.py +0 -0
  21. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/types/__init__.py +0 -0
  22. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/types/request/__init__.py +0 -0
  23. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/types/response/__init__.py +0 -0
  24. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/types/response/cards.py +0 -0
  25. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/types/response/receipts.py +0 -0
  26. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/types/response/webhook.py +0 -0
  27. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/urls.py +0 -0
  28. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/util.py +0 -0
  29. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme/views.py +0 -0
  30. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme_pkg.egg-info/SOURCES.txt +0 -0
  31. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme_pkg.egg-info/dependency_links.txt +0 -0
  32. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme_pkg.egg-info/requires.txt +0 -0
  33. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/payme_pkg.egg-info/top_level.txt +0 -0
  34. {payme_pkg-3.0.14 → payme_pkg-3.0.15}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: payme-pkg
3
- Version: 3.0.14
3
+ Version: 3.0.15
4
4
  Home-page: https://github.com/Muhammadali-Akbarov/payme-pkg
5
5
  Author: Muhammadali Akbarov
6
6
  Author-email: muhammadali17abc@gmail.com
@@ -160,12 +160,18 @@ Example to generate fallback link:
160
160
  from payme import Payme
161
161
 
162
162
  payme = Payme(payme_id="your-payme-id")
163
- fallback_link = payme.initializer.generate_fallback_link()
163
+
164
+ form_fields = {
165
+ "driver_id": 12345,
166
+ "amount": 1000
167
+ }
168
+
169
+ fallback_link = payme.initializer.generate_fallback_link(form_fields) # form field is optional
164
170
  print(fallback_link)
165
171
  ```
166
172
 
167
173
  - Output
168
174
 
169
175
  ```
170
- https://payme.uz/fallback/merchant/?id=59f9ca12dsadaa1717
176
+ https://payme.uz/fallback/merchant/?id=5feb5dd783c40aed047fe655&driver_id=12345&amount=1000
171
177
  ```
@@ -146,12 +146,18 @@ Example to generate fallback link:
146
146
  from payme import Payme
147
147
 
148
148
  payme = Payme(payme_id="your-payme-id")
149
- fallback_link = payme.initializer.generate_fallback_link()
149
+
150
+ form_fields = {
151
+ "driver_id": 12345,
152
+ "amount": 1000
153
+ }
154
+
155
+ fallback_link = payme.initializer.generate_fallback_link(form_fields) # form field is optional
150
156
  print(fallback_link)
151
157
  ```
152
158
 
153
159
  - Output
154
160
 
155
161
  ```
156
- https://payme.uz/fallback/merchant/?id=59f9ca12dsadaa1717
162
+ https://payme.uz/fallback/merchant/?id=5feb5dd783c40aed047fe655&driver_id=12345&amount=1000
157
163
  ```
@@ -56,14 +56,25 @@ class Initializer:
56
56
  params = base64.b64encode(params.encode("utf-8")).decode("utf-8")
57
57
  return f"https://checkout.paycom.uz/{params}"
58
58
 
59
- def generate_fallback_link(self):
59
+ def generate_fallback_link(self, form_fields: dict = None):
60
60
  """
61
61
  Generate a fallback URL for the Payme checkout.
62
62
 
63
+ Parameters
64
+ ----------
65
+ fields : dict, optional
66
+ Additional query parameters to be appended to the fallback URL.
67
+
63
68
  Returns
64
69
  -------
65
70
  str
66
71
  A fallback URL formatted as a URL, ready to be used in the payment
67
72
  process.
68
73
  """
69
- return f"https://payme.uz/fallback/merchant/?id={self.payme_id}"
74
+ result = f"https://payme.uz/fallback/merchant/?id={self.payme_id}"
75
+
76
+ if form_fields is not None:
77
+ for key, value in form_fields.items():
78
+ result += f"&{key}={value}"
79
+
80
+ return result
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: payme-pkg
3
- Version: 3.0.14
3
+ Version: 3.0.15
4
4
  Home-page: https://github.com/Muhammadali-Akbarov/payme-pkg
5
5
  Author: Muhammadali Akbarov
6
6
  Author-email: muhammadali17abc@gmail.com
@@ -160,12 +160,18 @@ Example to generate fallback link:
160
160
  from payme import Payme
161
161
 
162
162
  payme = Payme(payme_id="your-payme-id")
163
- fallback_link = payme.initializer.generate_fallback_link()
163
+
164
+ form_fields = {
165
+ "driver_id": 12345,
166
+ "amount": 1000
167
+ }
168
+
169
+ fallback_link = payme.initializer.generate_fallback_link(form_fields) # form field is optional
164
170
  print(fallback_link)
165
171
  ```
166
172
 
167
173
  - Output
168
174
 
169
175
  ```
170
- https://payme.uz/fallback/merchant/?id=59f9ca12dsadaa1717
176
+ https://payme.uz/fallback/merchant/?id=5feb5dd783c40aed047fe655&driver_id=12345&amount=1000
171
177
  ```
@@ -7,7 +7,7 @@ long_description = (here / "README.md").read_text(encoding="utf-8")
7
7
 
8
8
  setup(
9
9
  name='payme-pkg',
10
- version='3.0.14',
10
+ version='3.0.15',
11
11
  license='MIT',
12
12
  author="Muhammadali Akbarov",
13
13
  author_email='muhammadali17abc@gmail.com',
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
File without changes