How to send get\post request from Sanic?

Is it possible to send get\post request from sanic without using additional libs?
I did not found any examples in docs. There is only examples how to accept such requests.

That is correct. Sanic is an http server and framework only. it does not offer an http client interface. The goal of the project is to provide a fast http server framework leveraging async/await.

I’d suggest requests- async since it has a requests compatible api, or aiohttp.


EDIT 2021-06-01:

My current recommendation is httpx.