python의 expat을 써보려는데 원하는대로 안되서 멘붕 중
xmlparser.ParseFile(file) Parse XML data reading from the object file. file only needs to provide the read(nbytes) method, returning the empty string when there’s no more data. |
[링크 : https://docs.python.org/3.1/library/pyexpat.html]
>>> r = open('18549666.xml') >>> p.ParseFile(r) Traceback (most recent call last): File "", line 1, in TypeError: read() did not return a bytes object (type=str) |
rb(read binary)가 중요한거였냐..
>>> r = open('18549666.xml','rb') |
[링크 : https://stackoverflow.com/questions/1179305/expat-parsing-in-python-3]
'Programming > python(파이썬)' 카테고리의 다른 글
tensorflow, pytorch (0) | 2019.12.10 |
---|---|
python pip 특정 버전설치 / 목록에서 설치 (0) | 2019.09.09 |
ubuntu에서 python으로 postgres 접속하기 (0) | 2019.06.24 |
python pip 특정 버전 설치하기 (0) | 2019.06.18 |
python pdb를 이용한 디버깅 (0) | 2019.05.15 |