Памагите
-
Автор темы
- #1
сука что не так уе оно, я эту ошибку в феврале видел когда с аиокриптопэй джинглбелсился
reader.read returned <generator object _make_delegate_method.<locals>.method at 0x00000183644A0E40>, which is not awaitable
reader.read returned <generator object _make_delegate_method.<locals>.method at 0x00000183644A0E40>, which is not awaitable
Код:
from aiocsv import AsyncWriter, AsyncDictReader
import asyncio
import aiofiles
class DataPy:
async def pizdectest():
try:
async with aiofiles.open("data.csv", "r+", newline="") as csvfile:
reader = AsyncDictReader(csvfile)
async for row in reader:
print(row)
except Exception as e:
print(f"Ошибка: {e}")
asyncio.run(DataPy.pizdectest())