From dff77d489196a29af0d3ad27344925c90c9c4398 Mon Sep 17 00:00:00 2001 From: Pedro de Oliveira Guedes Date: Tue, 11 Jan 2022 12:17:35 -0300 Subject: [PATCH] Creating the request method. --- api/anticaptcha/cli.py | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/api/anticaptcha/cli.py b/api/anticaptcha/cli.py index e69de29..251604b 100644 --- a/api/anticaptcha/cli.py +++ b/api/anticaptcha/cli.py @@ -0,0 +1,38 @@ +import os +import json +import requests + +class AntiCaptcha: + """ + ## AntiCaptcha Client + --- + Esta classe utiliza o serviço svc_anticaptcha para quebrar provas de robô presentes em sites. + """ + + ep: str = "" + + def __init__(self) -> None: + self.ep = "https://localhost:8443" + + def __request_json_post__ (self, path: str, object: dict): + """ + ## HTTP JSON POST + --- + Este método é responsável por realizar requisições HTTP do tipo POST para objetos JSON. + + Ele retorna o corpo de resposta da requisição, ou uma mensagem de erro, que indica qual foi a irregularidade ocorrida ao chamar a API. + """ + + url = self.ep + path + print("Calling: " + url) + + apikey = os.environ.get('REPLAY_APIKEY') + headers = {"X-API-KEY": apikey} + res = requests.post(url, json = object, headers = headers, verify = False) + + if res.status_code >= 400: + raise Exception(f"HTTP ERROR: {str(res.status_code)} - {res.text}") + if res.headers.get("Content-Type") != None and res.headers.get("Content-Type").find("json") != -1: + return json.loads(res.text) + else: + return res.text \ No newline at end of file