async with aiohttp.ClientSession() as cs:
async with cs.get('https://www.reddit.com/r/memes/hot.json') as r:
res = await r.json()
This is my code to get json from reddit but it only gets 25 entries. How to get more than that?
Adding ?limit=somevalue
should give you more results.
https://www.reddit.com/r/memes/hot.json?limit=100