openprotein-python 0.2.0__tar.gz → 0.2.1.post1__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.
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/PKG-INFO +5 -1
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/README.md +3 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/poet.py +1 -1
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/pyproject.toml +1 -1
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/LICENSE.txt +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/__init__.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/_version.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/__init__.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/data.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/design.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/embedding.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/jobs.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/predict.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/api/train.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/base.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/config.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/errors.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/fasta.py +0 -0
- {openprotein_python-0.2.0 → openprotein_python-0.2.1.post1}/openprotein/models.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: openprotein-python
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1.post1
|
|
4
4
|
Summary: OpenProtein Python interface.
|
|
5
5
|
Home-page: https://docs.openprotein.ai/
|
|
6
6
|
License: MIT
|
|
@@ -14,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
18
|
Requires-Dist: pandas (>=1)
|
|
18
19
|
Requires-Dist: pydantic (>=1)
|
|
19
20
|
Requires-Dist: requests (>=2)
|
|
@@ -22,6 +23,9 @@ Description-Content-Type: text/markdown
|
|
|
22
23
|
|
|
23
24
|
[](https://pypi.org/project/openprotein-python/)
|
|
24
25
|
[](https://pypi.org/project/openprotein-python/)
|
|
26
|
+
[](https://anaconda.org/openprotein/openprotein_python)
|
|
27
|
+
|
|
28
|
+
|
|
25
29
|
# openprotein-python
|
|
26
30
|
The OpenProtein.AI Python Interface provides a user-friendly library to interact with the OpenProtein.AI REST API, enabling various tasks related to protein analysis and modeling.
|
|
27
31
|
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
[](https://pypi.org/project/openprotein-python/)
|
|
2
2
|
[](https://pypi.org/project/openprotein-python/)
|
|
3
|
+
[](https://anaconda.org/openprotein/openprotein_python)
|
|
4
|
+
|
|
5
|
+
|
|
3
6
|
# openprotein-python
|
|
4
7
|
The OpenProtein.AI Python Interface provides a user-friendly library to interact with the OpenProtein.AI REST API, enabling various tasks related to protein analysis and modeling.
|
|
5
8
|
|
|
@@ -365,7 +365,7 @@ def upload_prompt_post(
|
|
|
365
365
|
"""
|
|
366
366
|
|
|
367
367
|
endpoint = "v1/poet/align/upload_prompt"
|
|
368
|
-
files = {"prompt_file
|
|
368
|
+
files = {"prompt_file": prompt_file}
|
|
369
369
|
try:
|
|
370
370
|
response = session.post(endpoint, files=files)
|
|
371
371
|
return PromptJob(**response.json())
|
|
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
|