morphlabs 0.2.2__tar.gz → 0.2.3__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.
- {morphlabs-0.2.2 → morphlabs-0.2.3}/PKG-INFO +2 -1
- {morphlabs-0.2.2 → morphlabs-0.2.3}/morphlabs/models/scientia.py +1 -1
- {morphlabs-0.2.2 → morphlabs-0.2.3}/morphlabs.egg-info/PKG-INFO +2 -1
- {morphlabs-0.2.2 → morphlabs-0.2.3}/pyproject.toml +2 -1
- {morphlabs-0.2.2 → morphlabs-0.2.3}/LICENSE +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/README.md +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/examples/visualize_cleaning.py +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/morphlabs/__init__.py +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/morphlabs/io/__init__.py +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/morphlabs/io/loading.py +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/morphlabs/io/preprocessing.py +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/morphlabs/models/__init__.py +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/morphlabs.egg-info/SOURCES.txt +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/morphlabs.egg-info/dependency_links.txt +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/morphlabs.egg-info/requires.txt +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/morphlabs.egg-info/top_level.txt +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/setup.cfg +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/tests/test_loading.py +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/tests/test_preprocessing.py +0 -0
- {morphlabs-0.2.2 → morphlabs-0.2.3}/tests/test_scientia.py +0 -0
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: morphlabs
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: Python SDK for Morphlabs biosignal processing API
|
|
5
5
|
Author-email: Morphlabs <support@morphlabs.tech>
|
|
6
6
|
Maintainer-email: Morphlabs <support@morphlabs.tech>
|
|
7
7
|
License-Expression: MIT
|
|
8
8
|
Project-URL: Homepage, https://morphlabs.tech
|
|
9
|
+
Project-URL: Documentation, https://developers.morphlabs.tech
|
|
9
10
|
Requires-Python: >=3.8
|
|
10
11
|
Description-Content-Type: text/markdown
|
|
11
12
|
License-File: LICENSE
|
|
@@ -28,7 +28,7 @@ RETRYABLE_STATUS_CODES = [429, 500, 502, 503, 504]
|
|
|
28
28
|
|
|
29
29
|
RUNPOD_API_KEY = "rpa_FFBJYB2SODF8Z3MCXWY5W78L8KI0A4BGQ999JLUZcqkk9u"
|
|
30
30
|
|
|
31
|
-
OPTIMAL_BATCH_SIZE =
|
|
31
|
+
OPTIMAL_BATCH_SIZE = 16 # Segments per request (RunPod 10MiB body limit)
|
|
32
32
|
|
|
33
33
|
DEFAULT_POLL_INTERVAL = 1.0 # seconds between status polls
|
|
34
34
|
DEFAULT_MAX_POLL_TIME = 300.0 # 5 min timeout per batch
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: morphlabs
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: Python SDK for Morphlabs biosignal processing API
|
|
5
5
|
Author-email: Morphlabs <support@morphlabs.tech>
|
|
6
6
|
Maintainer-email: Morphlabs <support@morphlabs.tech>
|
|
7
7
|
License-Expression: MIT
|
|
8
8
|
Project-URL: Homepage, https://morphlabs.tech
|
|
9
|
+
Project-URL: Documentation, https://developers.morphlabs.tech
|
|
9
10
|
Requires-Python: >=3.8
|
|
10
11
|
Description-Content-Type: text/markdown
|
|
11
12
|
License-File: LICENSE
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "morphlabs"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.3"
|
|
8
8
|
description = "Python SDK for Morphlabs biosignal processing API"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -28,6 +28,7 @@ dependencies = [
|
|
|
28
28
|
|
|
29
29
|
[project.urls]
|
|
30
30
|
Homepage = "https://morphlabs.tech"
|
|
31
|
+
Documentation = "https://developers.morphlabs.tech"
|
|
31
32
|
|
|
32
33
|
|
|
33
34
|
[project.optional-dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|