Python

Django 프로젝트, 앱 생성시 아래와 같은 에러가 발생할 경우 File "C:\Python27\Lib\functools.py", line 56, in '__lt__': [('__gt__', lambda self, other: other < self),RuntimeError: maximum recursion depth exceeded while calling a Python object C:\Python27\Lib\functools.py 에 Convert 부분을 다음과 같이 변경해 주면 된다.def total_ordering(cls): """Class decorator that fills in missing ordering methods""" # convert = { # '__lt__': [('__gt..
Windows 10 64 bit 1. 아래 URL 에서 Apache zip 파일 다운 후 압축 풀기vc_redist_x64 파일 실행https://www.apachelounge.com/download/ 2. Apache zip 파일 압축 푼 후 Apache24 폴더만 자신이 원하는 위치로 이동C:\Program Files\Apache24 이동했음. 3. ..\Apache24\conf\httpd.conf 에서 아래 빨간 부분 알맞게 수정 4. 환경변수 설정 시스템 변수 > Path 에 Apache24 폴더 안의 bin 까지의 경로 추가 5. 아파치 설치 : cmd 를 관리자 모드로 실행 후 "httpd -k install" 6. 아파치 실행 : "httpd -k start" 7. httpd.conf 에 입..
# -*- coding: utf-8 -*- import pymysql pymysql.install_as_MySQLdb() conn = pymysql.connect(host='', user='', password='', db='', charset='') cursor = conn.cursor() sql=open("test.sql").read() # .sql 파일 읽음 cursor.execute(sql) cursor.fetchall() conn.close()
[Python] 특정 월의 마지막날짜 구하는 방법import calendar print calendar.monthrange(2018,1) #(0,31) print calendar.monthrange(2018,2) #(4,30) print calendar.monthrange(2018,1)[1] #31 print calendar.monthrange(2018,2)[1] #30
출처 : https://docs.djangoproject.com/en/dev/ref/settings/#date-format https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
crontab으로 python 파일 실행시 아래와 같은 에러를 띄울 경우/usr/bin/env: python^M: No such file or directory 문제 원인 : VIM에서 (ENTER) 를 인식하지 못해 ^M ( ctrl + v + m )으로 됨.[root@aaa test]# cat -v test.py | head#!/usr/bin/env python^M# -*- coding: utf-8 -*-^M^Mfrom datetime import *^Mimport server_connect^M^Mimport logging.handlers^M# logging.basicConfig(filename='./test.log', level=logging.DEBUG)^M^M 해결 방법 : 1) ^M 제거 이때,..
S0PH1A
'Python' 카테고리의 글 목록 (9 Page)