MagicFeedback 0.0.1__tar.gz → 0.0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MagicFeedback
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: SDK for MagicFeedback API
5
5
  Author-email: Francisco Arias <farias@magicfedback.io>
6
6
  Project-URL: Homepage, https://github.com/MagicFeedback/magicfeedback_python_sdk
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "MagicFeedback"
3
- version = "0.0.1"
3
+ version = "0.0.2"
4
4
  authors = [
5
5
  { name="Francisco Arias", email="farias@magicfedback.io" },
6
6
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MagicFeedback
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: SDK for MagicFeedback API
5
5
  Author-email: Francisco Arias <farias@magicfedback.io>
6
6
  Project-URL: Homepage, https://github.com/MagicFeedback/magicfeedback_python_sdk
@@ -1,8 +1,7 @@
1
1
  import json
2
- from typing import Any, Dict, Optional
2
+ from typing import Any, Dict
3
3
 
4
4
  import requests
5
- from google.auth.transport.requests import Request
6
5
 
7
6
 
8
7
  class MagicFeedbackClient:
@@ -63,7 +62,7 @@ class MagicFeedbackClient:
63
62
  response = requests.request(
64
63
  method, url, headers=self.headers, json=json)
65
64
  response.raise_for_status() # Raise exception for non-2xx status codes
66
- # TODO: Control the status of the call
65
+ # TODO: Control the status of the call
67
66
  print("Status code: ", response.status_code)
68
67
  print("Response: ", response.json())
69
68
 
File without changes
File without changes
File without changes