File size: 843 Bytes
d65b1bc f9cdcf7 d65b1bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import aiohttp, json
class RenderVideo:
def __init__(
self, url="https://mbonea-mjema--rectifier-run-rectifier.modal.run/create-video"
):
self.url = url
@staticmethod
def _parse_response(response: str) -> dict:
return json.loads(response)
async def post_request(self, data: dict) -> dict:
headers = {"Accept": "application/json", "Content-Type": "application/json"}
async with aiohttp.ClientSession() as session:
async with session.post(
self.url, data=json.dumps(data), headers=headers
) as resp:
response = await resp.text()
result = self._parse_response(response)
return result
async def render_video(self, data) -> dict:
result = await self.post_request(data)
return result
|