diff --git a/scrapling/fetchers.py b/scrapling/fetchers.py index ef7a1b6..eb8d1ad 100644 --- a/scrapling/fetchers.py +++ b/scrapling/fetchers.py @@ -143,7 +143,7 @@ class AsyncFetcher(Fetcher): :return: A `Response` object that is the same as `Adaptor` object except it has these added attributes: `status`, `reason`, `cookies`, `headers`, and `request_headers` """ adaptor_arguments = tuple(self.adaptor_arguments.items()) - response_object = await StaticEngine(url, proxy, stealthy_headers, follow_redirects, timeout, retries=retries, adaptor_arguments=adaptor_arguments).async_post(**kwargs) + response_object = await StaticEngine(url, proxy, stealthy_headers, follow_redirects, timeout, retries=retries, adaptor_arguments=adaptor_arguments).async_put(**kwargs) return response_object async def delete(