Python

[Python] save matrix to csv Pandas 모듈을 이용하면 된다. * to_csv 옵션 - header = None : 해더(열) 넘버 표시 안함.- index = None : 행 넘버 표시 안함.- 그 외 옵션은 문서 참고 바람. import pandas as pd matrix = [[1,2,3], [4,5,6], [7,8,9]] df = pd.DataFrame(matrix) df.to_csv("파일명.csv", header=None, index=None) + 추가pandas 가 없으면 pip으로 설치 가능하다.$ pip install pandas 참고 : stackoverflow
[Python] ANCI to UTF8 encoding을 mbcs로 하면 된다! import codecs codecs.open("ANSI_file.txt","r",encoding="mbcs") 참고 : stackoverflow
[Django] target wsgi script wsgi.py cannot be loaded as python module 에러 해결 방법 Django + Apache 사용할 때, 아파치 에러 로그에 "Target WSGI script '[wsgi 파일 경로]wsgi.py' cannot be loaded as Python module." 오류 발생할 때가 있다. [Mon Jan 28 10:55:11.851599 2019] [:error] [pid 1228] [client 10.10.91.70:61336] mod_wsgi (pid=1228): Target WSGI script '[wsgi 파일 경로]/wsgi.py' cannot be loaded as Python module. [Mon Jan 28 10..
[DJango] 사용자 인증 Overview 인증 시스템의 구성 - User : 사용자 - Permissions: Binary(yes/no) flags designating whether a user may perform a certain task. : 권한 : 사용자가 업무를 수행할 수 있는지 여부를 지정하는 바이너리 플래그 - Groups: A generic way of applying labels and permissions to more than one user. : 그룹 : 둘 이상의 사용자에게 라벨과 권한을 적용하는 일반적인 방법 - A configurable password hashing system : 구성 가능한 암호 해시 시스템 - Forms and view tools for loggi..
[Django] 사용자 인증 (2) Using the Django authentication system 이 문서는 Django의 인증 시스템을 기본 구성에서 사용하는 방법을 설명한다. 이 구성은 가장 일반적인 프로젝트 요구에 부응하고, 상당히 광범위한 작업을 처리하며, 암호 및 권한을 신중하게 구현하도록 진화했다. 인증 요구 사항이 기본값과 다른 프로젝트의 경우, Django는 광범위한 확장 및 사용자 정의(extension and customization)의 인증을 지원한다. Django 인증은 인증 및 승인을 함께 제공하며 일반적으로 이러한 기능이 다소 결합되어 있기 때문에 인증 시스템이라고한다. User Objects User Objects는 인증시스템의 핵심이다. 사이트와 상호작용하는 사람들을 ..
[Django] 데이터베이스에 초기(initial) 데이터 입력Json 또는 Yaml 형식으로 초기 데이터를 입력. - model : 앱이름.테이블명 # Json [ { "model": "myapp.person", "pk": 1, "fields": { "first_name": "John", "last_name": "Lennon" } }, { "model": "myapp.person", "pk": 2, "fields": { "first_name": "Paul", "last_name": "McCartney" } } ] # Yaml - model: myapp.person pk: 1 fields: first_name: John last_name: Lennon - model: myapp.person pk: 2 f..
S0PH1A
'Python' 카테고리의 글 목록 (6 Page)