def post_text(self, url, data, timeout=None): with aiohttp.Timeout(timeout or self.timeout): response = await self.session.post(url, data=data) return response.url, await response.text()