Pārlūkot izejas kodu

Added header and kwarg functionality to get_page function.

tags/v1.8.0
Roxie Gibson pirms 6 gadiem
vecāks
revīzija
64905f3adc
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. +2
    -2
      roxbot/http.py

+ 2
- 2
roxbot/http.py Parādīt failu

@@ -88,12 +88,12 @@ async def upload_file(url, file):
return await resp.json()


async def get_page(url):
async def get_page(url, *, headers=None, **kwargs):
"""
Returns the page at the given url
:param url: the url of the page you want to get
:return: the html page
"""
async with aiohttp.ClientSession() as session:
async with session.get(url, headers={'User-agent': 'RoxBot Discord Bot'}) as page:
async with session.get(url, headers=headers, **kwargs) as page:
return await page.text()

Notiek ielāde…
Atcelt
Saglabāt