Parcourir la source

Added header and kwarg functionality to get_page function.

tags/v1.8.0
Roxie Gibson il y a 6 ans
Parent
révision
64905f3adc
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      roxbot/http.py

+ 2
- 2
roxbot/http.py Voir le fichier

return await resp.json() return await resp.json()




async def get_page(url):
async def get_page(url, *, headers=None, **kwargs):
""" """
Returns the page at the given url Returns the page at the given url
:param url: the url of the page you want to get :param url: the url of the page you want to get
:return: the html page :return: the html page
""" """
async with aiohttp.ClientSession() as session: 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() return await page.text()

Chargement…
Annuler
Enregistrer