canvas 0.44.2__py3-none-any.whl → 0.44.3__py3-none-any.whl

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 canvas might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: canvas
3
- Version: 0.44.2
3
+ Version: 0.44.3
4
4
  Summary: SDK to customize event-driven actions in your Canvas instance
5
5
  Author-email: Canvas Team <engineering@canvasmedical.com>
6
6
  License-Expression: MIT
@@ -214,7 +214,7 @@ canvas_sdk/templates/__init__.py,sha256=LtUmLDsGSTq249T6sA7PUzkl2OfCAyvtIOGPNHr6
214
214
  canvas_sdk/templates/utils.py,sha256=_AIYcGQD3ePWzQpH7ZirkV_ATtIHlzf-T_03mHoeIWI,1460
215
215
  canvas_sdk/utils/__init__.py,sha256=PADveJMf-BtOapK5Cczy-nOuZzVh-HT2H6sfJW_SK9U,198
216
216
  canvas_sdk/utils/db.py,sha256=wOZORBfyBVxQkay5vyEtQ4i0KVCfASFGREmecHMR8DE,409
217
- canvas_sdk/utils/http.py,sha256=0_mwFmSBRn45jQwp8BLEASXQIYaTWAhdjag38WOLQMM,10588
217
+ canvas_sdk/utils/http.py,sha256=BkHmLdTP-m33W0Ufp_NkQU_L0uxbkJzzilk1JNbmYlA,10691
218
218
  canvas_sdk/utils/metrics.py,sha256=ojCbXgjLSy1pEavHgRs8j4OVNdAUMa1nLqZdkA0uCQQ,5987
219
219
  canvas_sdk/utils/plugins.py,sha256=xxJUeVJBzfQWhlD1kO7HlFWxDAl01kkvbsf07Z08dOM,1551
220
220
  canvas_sdk/v1/__init__.py,sha256=YYXr5tEQlnwMgTXJbOG963tKSPiUOM4mUkX8wuiqp7U,17
@@ -300,7 +300,7 @@ protobufs/canvas_generated/messages/plugins.proto,sha256=oNainUPWFYQjgCX7bJEPI9_
300
300
  protobufs/canvas_generated/services/plugin_runner.proto,sha256=doadBKn5k4xAtOgR-q_pEvW4yzxpUaHNOowMG6CL5GY,304
301
301
  pubsub/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
302
302
  pubsub/pubsub.py,sha256=PHIvJ5SD3M-jQSYeGGSj1FuG6CvP6BQffAoGax9Uudk,1423
303
- canvas-0.44.2.dist-info/METADATA,sha256=QjqiT8vTin_u8QYNEER4aUn9AQ038bAV0obNpTjxW_8,4424
304
- canvas-0.44.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
305
- canvas-0.44.2.dist-info/entry_points.txt,sha256=0Vs_9GmTVUNniH6eDBlRPgofmADMV4BES6Ao26M4AbM,47
306
- canvas-0.44.2.dist-info/RECORD,,
303
+ canvas-0.44.3.dist-info/METADATA,sha256=H0_lRz3g2L965YjCc3akgG8N67cmV58OnP8qTYF4sJk,4424
304
+ canvas-0.44.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
305
+ canvas-0.44.3.dist-info/entry_points.txt,sha256=0Vs_9GmTVUNniH6eDBlRPgofmADMV4BES6Ao26M4AbM,47
306
+ canvas-0.44.3.dist-info/RECORD,,
canvas_sdk/utils/http.py CHANGED
@@ -304,6 +304,9 @@ class PharmacyHttp:
304
304
  {"Authorization": os.getenv("PRE_SHARED_KEY", "")}
305
305
  )
306
306
 
307
+ # Disable SSL verification for this session
308
+ self._http_client._session.verify = False
309
+
307
310
  def search_pharmacies(
308
311
  self, search_term: str, latitude: str | None = None, longitude: str | None = None
309
312
  ) -> list[dict]: