Hi, I wanted to do asynchronous webscriping. There is an error in this code. please help!

Hi, I wanted to do asynchronous webscriping. There is an error in this code. please help me!

import aiohttp
import asyncio
from bs4 import BeautifulSoup

async def main():
async with aiohttp.ClientSession() as session:
async with session.get(‘http://wowgaming.uz’) as response:
soup = BeautifulSoup(response.content, “html.parser”)
price = soup.find(class_=“col-lg-12 text-center”).get_text()[45:][:19]

asyncio.run(main())