openprotein-python 0.1.1b5__tar.gz → 0.1.1b6__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.1.1b5 → openprotein_python-0.1.1b6}/PKG-INFO +2 -2
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/README.md +1 -1
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/_version.py +1 -1
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/base.py +1 -1
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/pyproject.toml +1 -1
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/LICENSE.txt +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/__init__.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/__init__.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/data.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/design.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/embedding.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/jobs.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/poet.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/predict.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/train.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/config.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/errors.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/fasta.py +0 -0
- {openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/models.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: openprotein-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1b6
|
|
4
4
|
Summary: OpenProtein Python interface.
|
|
5
5
|
Home-page: https://docs.openprotein.ai/
|
|
6
6
|
License: MIT
|
|
@@ -30,7 +30,7 @@ Python interface for the OpenProtein.AI REST API.
|
|
|
30
30
|
You can install with pip:
|
|
31
31
|
|
|
32
32
|
```
|
|
33
|
-
pip install
|
|
33
|
+
pip install openprotein_python
|
|
34
34
|
```
|
|
35
35
|
## Getting started
|
|
36
36
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version_tuple__ = version_tuple = (0, 1, 1, '
|
|
1
|
+
__version_tuple__ = version_tuple = (0, 1, 1, 'b6')
|
|
2
2
|
__version__ = version = '.'.join(str(x) for x in __version_tuple__)
|
|
@@ -40,7 +40,7 @@ class APISession(requests.Session):
|
|
|
40
40
|
|
|
41
41
|
def __init__(self, username:str,
|
|
42
42
|
password:str,
|
|
43
|
-
backend:str = "https://
|
|
43
|
+
backend:str = "https://api.openprotein.ai/api/" ):
|
|
44
44
|
super().__init__()
|
|
45
45
|
self.backend = backend
|
|
46
46
|
self.verify = True
|
|
File without changes
|
|
File without changes
|
{openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openprotein_python-0.1.1b5 → openprotein_python-0.1.1b6}/openprotein_python/api/embedding.py
RENAMED
|
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
|