ScientificMicroservices 1.0.3__tar.gz → 1.0.4__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: ScientificMicroservices
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Easily call the APIs by Scientific Microservices. Requires an API key to be registered (currently via RapidAPI)
5
5
  Author-email: Jegar Pitchforth <jegar@scientificmicroservices.com>, Jac Davis <jac@scientificmicroservices.com>
6
6
  Maintainer-email: Jegar Pitchforth <jegar@scientificmicroservices.com>
@@ -46,7 +46,7 @@ api_key = os.environ("api_key")
46
46
  input_data = [1, 2, 4, 5, 40, 3, 5, 6]
47
47
 
48
48
  # Call the API
49
- outliers = DetectOutliers(input_data, api_key)
49
+ outliers = DetectOutliers(api_key, input_data)
50
50
 
51
51
  # Process the response
52
52
  print(response)
@@ -30,7 +30,7 @@ api_key = os.environ("api_key")
30
30
  input_data = [1, 2, 4, 5, 40, 3, 5, 6]
31
31
 
32
32
  # Call the API
33
- outliers = DetectOutliers(input_data, api_key)
33
+ outliers = DetectOutliers(api_key, input_data)
34
34
 
35
35
  # Process the response
36
36
  print(response)
@@ -3,7 +3,7 @@ requires = ["setuptools >= 77.0.3", "requests"]
3
3
  build-backend = "setuptools.build_meta"
4
4
  [project]
5
5
  name = "ScientificMicroservices"
6
- version = "1.0.3"
6
+ version = "1.0.4"
7
7
  authors = [{ name="Jegar Pitchforth", email="jegar@scientificmicroservices.com"}, { name="Jac Davis", email="jac@scientificmicroservices.com"}]
8
8
  maintainers = [{ name="Jegar Pitchforth", email="jegar@scientificmicroservices.com"}]
9
9
  description = "Easily call the APIs by Scientific Microservices. Requires an API key to be registered (currently via RapidAPI)"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ScientificMicroservices
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Easily call the APIs by Scientific Microservices. Requires an API key to be registered (currently via RapidAPI)
5
5
  Author-email: Jegar Pitchforth <jegar@scientificmicroservices.com>, Jac Davis <jac@scientificmicroservices.com>
6
6
  Maintainer-email: Jegar Pitchforth <jegar@scientificmicroservices.com>
@@ -46,7 +46,7 @@ api_key = os.environ("api_key")
46
46
  input_data = [1, 2, 4, 5, 40, 3, 5, 6]
47
47
 
48
48
  # Call the API
49
- outliers = DetectOutliers(input_data, api_key)
49
+ outliers = DetectOutliers(api_key, input_data)
50
50
 
51
51
  # Process the response
52
52
  print(response)