파이썬(156)
-
Django import export 참고자료
Getting started — django-import-export 2.5.1.dev0 documentation (django-import-export.readthedocs.io) resource를 통하여 컬럼 제어 가능 Getting started — django-import-export 2.5.1.dev0 documentation Importing It is also possible to enable data import via standard Django admin interface. To do this subclass ImportExportModelAdmin or use one of the available mixins, i.e. ImportMixin, or ImportExportMixin. C..
2021.01.06 -
mftraining 처리할 수 있는 tr 갯수 제한 있음
리눅스에서 64개까지 가능 윈도우에서 115개까지 가능 에러 No such file or directory: './static/ocr/pffmtable' shapetable 파일을 지워야 초기화 됨
2021.01.04 -
shapeclustering 효과 없음
단, mftraing 수행시, 에러가 발생하는 경우 사용하면 해결되는 경우가 있음
2021.01.03 -
판다스 중복 제거
fonts = fonts.drop_duplicates('font_name', keep='first')
2021.01.02 -
판다스 정렬
fonts.sort_values(by=['font_name'])
2021.01.02 -
byte <-> str 변환
temp = r'abcd' str 변환 : temp.decode() temp = 'abcd' byte 변환 : temp.endcode()
2021.01.02