■ AsyncTextIOWrapper 클래스의 read 메소드를 사용해 텍스트 파일을 읽는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import asyncio import aiofiles async def main(): async with aiofiles.open("sample.md", mode = "r") as asyncTextIOWrapper: fintContent = await asyncTextIOWrapper.read() print(fintContent) asyncio.run(main()) """ # 제목 1단계 ## 제목 2단계 ### 제목 3단계 #### 제목 4단계 ##### 제목 5단계 ###### 제목 6단계 """ |