ScientificMicroservices 1.0.2__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.
- {scientificmicroservices-1.0.2/src/ScientificMicroservices.egg-info → scientificmicroservices-1.0.4}/PKG-INFO +2 -2
- {scientificmicroservices-1.0.2 → scientificmicroservices-1.0.4}/README.md +1 -1
- {scientificmicroservices-1.0.2 → scientificmicroservices-1.0.4}/pyproject.toml +1 -1
- {scientificmicroservices-1.0.2 → scientificmicroservices-1.0.4}/src/ScientificMicroservices/functions.py +3 -1
- {scientificmicroservices-1.0.2 → scientificmicroservices-1.0.4/src/ScientificMicroservices.egg-info}/PKG-INFO +2 -2
- {scientificmicroservices-1.0.2 → scientificmicroservices-1.0.4}/LICENSE +0 -0
- {scientificmicroservices-1.0.2 → scientificmicroservices-1.0.4}/setup.cfg +0 -0
- {scientificmicroservices-1.0.2 → scientificmicroservices-1.0.4}/src/ScientificMicroservices/__init__.py +0 -0
- {scientificmicroservices-1.0.2 → scientificmicroservices-1.0.4}/src/ScientificMicroservices.egg-info/SOURCES.txt +0 -0
- {scientificmicroservices-1.0.2 → scientificmicroservices-1.0.4}/src/ScientificMicroservices.egg-info/dependency_links.txt +0 -0
- {scientificmicroservices-1.0.2 → scientificmicroservices-1.0.4}/src/ScientificMicroservices.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ScientificMicroservices
|
|
3
|
-
Version: 1.0.
|
|
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(
|
|
49
|
+
outliers = DetectOutliers(api_key, input_data)
|
|
50
50
|
|
|
51
51
|
# Process the response
|
|
52
52
|
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.
|
|
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
|
+
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(
|
|
49
|
+
outliers = DetectOutliers(api_key, input_data)
|
|
50
50
|
|
|
51
51
|
# Process the response
|
|
52
52
|
print(response)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|