mixpeek 0.6.19__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 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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mixpeek
3
- Version: 0.6.19
3
+ Version: 0.6.21
4
4
  Summary: Mixpeek Python SDK
5
5
  Home-page: https://github.com/mixpeek/mixpeek-python
6
6
  Author: Ethan Steininger
@@ -10,6 +10,8 @@ Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.6
12
12
  Description-Content-Type: text/markdown
13
+ Requires-Dist: requests ==2.32.3
14
+ Requires-Dist: pydantic ==2.7.3
13
15
 
14
16
  # Mixpeek SDK
15
17
 
@@ -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=h-YSg18sjAoKgZFMMlRJGkuanpa7zQ5K0JPMhJP0aDg,789
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.19.dist-info/METADATA,sha256=mjNdhGVOMIKEXL1BtjVSot4atvc2U2pnd9XZcSCl3HI,1484
12
- mixpeek-0.6.19.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
13
- mixpeek-0.6.19.dist-info/top_level.txt,sha256=EJ8Jc4IhqyUwnUlBwKbs498Ju4O9a-IDh2kXc_lo6Vg,8
14
- mixpeek-0.6.19.dist-info/RECORD,,
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