mixpeek 0.6.20__py3-none-any.whl → 0.6.21__py3-none-any.whl
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.
- mixpeek/client.py +3 -0
- mixpeek/endpoints/pipelines.py +26 -0
- {mixpeek-0.6.20.dist-info → mixpeek-0.6.21.dist-info}/METADATA +1 -1
- {mixpeek-0.6.20.dist-info → mixpeek-0.6.21.dist-info}/RECORD +6 -6
- .DS_Store +0 -0
- {mixpeek-0.6.20.dist-info → mixpeek-0.6.21.dist-info}/WHEEL +0 -0
- {mixpeek-0.6.20.dist-info → mixpeek-0.6.21.dist-info}/top_level.txt +0 -0
mixpeek/client.py
CHANGED
@@ -5,6 +5,8 @@ from .endpoints.embed import Embed
|
|
5
5
|
from .endpoints.generate import Generate
|
6
6
|
from .endpoints.connections import Connections
|
7
7
|
from .endpoints.tools import Tools
|
8
|
+
from .endpoints.pipelines import Pipelines
|
9
|
+
|
8
10
|
|
9
11
|
class Mixpeek:
|
10
12
|
def __init__(self, api_key: str):
|
@@ -19,3 +21,4 @@ class Mixpeek:
|
|
19
21
|
self.generate = Generate(self.base_url, self.headers)
|
20
22
|
self.connections = Connections(self.base_url, self.headers)
|
21
23
|
self.tools = Tools(self.base_url, self.headers)
|
24
|
+
self.pipelines = Pipelines(self.base_url, self.headers)
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import requests
|
2
|
+
|
3
|
+
class Pipelines:
|
4
|
+
def __init__(self, base_url, headers):
|
5
|
+
self.base_url = base_url
|
6
|
+
self.headers = headers
|
7
|
+
|
8
|
+
def create(self, alias: str, code: str, destination: dict, source: dict):
|
9
|
+
url = f"{self.base_url}pipelines/"
|
10
|
+
data = {
|
11
|
+
"alias": alias,
|
12
|
+
"code": code,
|
13
|
+
"destination": destination,
|
14
|
+
"source": source
|
15
|
+
}
|
16
|
+
response = requests.post(url, json=data, headers=self.headers)
|
17
|
+
return response.json()
|
18
|
+
|
19
|
+
def invoke(self, pipeline_id: str, payload: dict, options: dict):
|
20
|
+
url = f"{self.base_url}pipelines/invoke/{pipeline_id}"
|
21
|
+
data = {
|
22
|
+
"payload": payload,
|
23
|
+
"options": options
|
24
|
+
}
|
25
|
+
response = requests.post(url, json=data, headers=self.headers)
|
26
|
+
return response.json()
|
@@ -1,14 +1,14 @@
|
|
1
|
-
.DS_Store,sha256=sh_0Bq1MSejTZG2HyqIO9aDnVz8tkfcv6WYZCXFhuD0,6148
|
2
1
|
mixpeek/__init__.py,sha256=XDdcK7wTEOEcF1cp-GeWmgPJ21Ny1R9pB0PPNrdDTMo,28
|
3
|
-
mixpeek/client.py,sha256=
|
2
|
+
mixpeek/client.py,sha256=mrMHTmWX0c1XIxDqgx404ZNOmWRnjnm8Bs_21MYcNS0,897
|
4
3
|
mixpeek/exceptions.py,sha256=Orhdo5UFLn3fcWVJtlgkznW8Iy5ndL96h0qTY8zOlDA,235
|
5
4
|
mixpeek/endpoints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
5
|
mixpeek/endpoints/connections.py,sha256=-jkdK_CK68DRUOu0IF2ThQFOsQGH8e2RqyRQBBq3Pco,469
|
7
6
|
mixpeek/endpoints/embed.py,sha256=D_xOYllx4cdPZZVXejRYhfvPOyJylum5aJ5gki-lbVQ,1562
|
8
7
|
mixpeek/endpoints/extract.py,sha256=1KWxvgbQanRwYcFPWGthyv32LVj2gAhxDERwY3QgHUg,476
|
9
8
|
mixpeek/endpoints/generate.py,sha256=TAJ79KCchwHYQBWZSnOZBFeXprXBZqAb2mNrQrT8VWM,513
|
9
|
+
mixpeek/endpoints/pipelines.py,sha256=HgU00smP4guE0Qf601Up2mk9LqTimg4Dg27kkhE_H-Q,840
|
10
10
|
mixpeek/endpoints/tools.py,sha256=Yw6mvBqbrREY79l_BM6ek_CjxDPbFUdkmZqiaZcYSe8,787
|
11
|
-
mixpeek-0.6.
|
12
|
-
mixpeek-0.6.
|
13
|
-
mixpeek-0.6.
|
14
|
-
mixpeek-0.6.
|
11
|
+
mixpeek-0.6.21.dist-info/METADATA,sha256=1Bo6iv5APiit5-tLsM1ji39H2xB7Y2sTGJWTrvADQQ0,1549
|
12
|
+
mixpeek-0.6.21.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
13
|
+
mixpeek-0.6.21.dist-info/top_level.txt,sha256=EJ8Jc4IhqyUwnUlBwKbs498Ju4O9a-IDh2kXc_lo6Vg,8
|
14
|
+
mixpeek-0.6.21.dist-info/RECORD,,
|
.DS_Store
DELETED
Binary file
|
File without changes
|
File without changes
|