ScientificMicroservices 1.0.0__tar.gz → 1.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.
- {scientificmicroservices-1.0.0/src/ScientificMicroservices.egg-info → scientificmicroservices-1.0.2}/PKG-INFO +13 -9
- {scientificmicroservices-1.0.0 → scientificmicroservices-1.0.2}/README.md +12 -8
- {scientificmicroservices-1.0.0 → scientificmicroservices-1.0.2}/pyproject.toml +1 -1
- {scientificmicroservices-1.0.0 → scientificmicroservices-1.0.2/src/ScientificMicroservices.egg-info}/PKG-INFO +13 -9
- {scientificmicroservices-1.0.0 → scientificmicroservices-1.0.2}/LICENSE +0 -0
- {scientificmicroservices-1.0.0 → scientificmicroservices-1.0.2}/setup.cfg +0 -0
- {scientificmicroservices-1.0.0 → scientificmicroservices-1.0.2}/src/ScientificMicroservices/__init__.py +0 -0
- {scientificmicroservices-1.0.0 → scientificmicroservices-1.0.2}/src/ScientificMicroservices/functions.py +0 -0
- {scientificmicroservices-1.0.0 → scientificmicroservices-1.0.2}/src/ScientificMicroservices.egg-info/SOURCES.txt +0 -0
- {scientificmicroservices-1.0.0 → scientificmicroservices-1.0.2}/src/ScientificMicroservices.egg-info/dependency_links.txt +0 -0
- {scientificmicroservices-1.0.0 → scientificmicroservices-1.0.2}/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.2
|
|
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>
|
|
@@ -34,13 +34,14 @@ Install the package using pip:
|
|
|
34
34
|
pip install ScientificMicroservices
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
Usage
|
|
37
|
+
## Usage
|
|
38
38
|
Here's a basic example of how to use the wrapper:
|
|
39
39
|
|
|
40
40
|
```python
|
|
41
41
|
from ScientificMicroservices import DetectOutliers
|
|
42
42
|
# Initialize the API client
|
|
43
43
|
api_key = os.environ("api_key")
|
|
44
|
+
|
|
44
45
|
# Define the input data
|
|
45
46
|
input_data = [1, 2, 4, 5, 40, 3, 5, 6]
|
|
46
47
|
|
|
@@ -49,14 +50,17 @@ outliers = DetectOutliers(input_data, api_key)
|
|
|
49
50
|
|
|
50
51
|
# Process the response
|
|
51
52
|
print(response)
|
|
52
|
-
Replace ModelAPI with the specific model you wish to use and adjust the input_data accordingly.
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
```
|
|
55
|
+
Replace DetectOutliers with the specific API you wish to use and adjust the input_data accordingly.
|
|
56
|
+
|
|
57
|
+
## Documentation
|
|
58
|
+
|
|
59
|
+
For detailed information on available models and their parameters, please refer to the README on the Rapid product page of the relevant API.
|
|
60
|
+
|
|
61
|
+
## Contributing
|
|
56
62
|
|
|
57
|
-
Contributing
|
|
58
63
|
Contributions are welcome! If you'd like to improve this wrapper or add support for additional models, please fork the repository and submit a pull request.
|
|
59
|
-
Read the Docs
|
|
60
64
|
|
|
61
|
-
License
|
|
62
|
-
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
65
|
+
## License
|
|
66
|
+
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
@@ -18,13 +18,14 @@ Install the package using pip:
|
|
|
18
18
|
pip install ScientificMicroservices
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
Usage
|
|
21
|
+
## Usage
|
|
22
22
|
Here's a basic example of how to use the wrapper:
|
|
23
23
|
|
|
24
24
|
```python
|
|
25
25
|
from ScientificMicroservices import DetectOutliers
|
|
26
26
|
# Initialize the API client
|
|
27
27
|
api_key = os.environ("api_key")
|
|
28
|
+
|
|
28
29
|
# Define the input data
|
|
29
30
|
input_data = [1, 2, 4, 5, 40, 3, 5, 6]
|
|
30
31
|
|
|
@@ -33,14 +34,17 @@ outliers = DetectOutliers(input_data, api_key)
|
|
|
33
34
|
|
|
34
35
|
# Process the response
|
|
35
36
|
print(response)
|
|
36
|
-
Replace ModelAPI with the specific model you wish to use and adjust the input_data accordingly.
|
|
37
37
|
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
```
|
|
39
|
+
Replace DetectOutliers with the specific API you wish to use and adjust the input_data accordingly.
|
|
40
|
+
|
|
41
|
+
## Documentation
|
|
42
|
+
|
|
43
|
+
For detailed information on available models and their parameters, please refer to the README on the Rapid product page of the relevant API.
|
|
44
|
+
|
|
45
|
+
## Contributing
|
|
40
46
|
|
|
41
|
-
Contributing
|
|
42
47
|
Contributions are welcome! If you'd like to improve this wrapper or add support for additional models, please fork the repository and submit a pull request.
|
|
43
|
-
Read the Docs
|
|
44
48
|
|
|
45
|
-
License
|
|
46
|
-
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
49
|
+
## License
|
|
50
|
+
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
@@ -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.2"
|
|
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.2
|
|
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>
|
|
@@ -34,13 +34,14 @@ Install the package using pip:
|
|
|
34
34
|
pip install ScientificMicroservices
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
Usage
|
|
37
|
+
## Usage
|
|
38
38
|
Here's a basic example of how to use the wrapper:
|
|
39
39
|
|
|
40
40
|
```python
|
|
41
41
|
from ScientificMicroservices import DetectOutliers
|
|
42
42
|
# Initialize the API client
|
|
43
43
|
api_key = os.environ("api_key")
|
|
44
|
+
|
|
44
45
|
# Define the input data
|
|
45
46
|
input_data = [1, 2, 4, 5, 40, 3, 5, 6]
|
|
46
47
|
|
|
@@ -49,14 +50,17 @@ outliers = DetectOutliers(input_data, api_key)
|
|
|
49
50
|
|
|
50
51
|
# Process the response
|
|
51
52
|
print(response)
|
|
52
|
-
Replace ModelAPI with the specific model you wish to use and adjust the input_data accordingly.
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
```
|
|
55
|
+
Replace DetectOutliers with the specific API you wish to use and adjust the input_data accordingly.
|
|
56
|
+
|
|
57
|
+
## Documentation
|
|
58
|
+
|
|
59
|
+
For detailed information on available models and their parameters, please refer to the README on the Rapid product page of the relevant API.
|
|
60
|
+
|
|
61
|
+
## Contributing
|
|
56
62
|
|
|
57
|
-
Contributing
|
|
58
63
|
Contributions are welcome! If you'd like to improve this wrapper or add support for additional models, please fork the repository and submit a pull request.
|
|
59
|
-
Read the Docs
|
|
60
64
|
|
|
61
|
-
License
|
|
62
|
-
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
65
|
+
## License
|
|
66
|
+
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|