I can't find a way to send user credentials with aiohttp. I want similar behavior to cURL's
curl --user "USER:PASSWORD"
but in aiohttp. On the reference doc I can't find this option, I can find query parameters, headers, body, but not user credentials.
I'm using aiohttp instead of curl for its asynchronous behavior.