일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 봉준호감독통역사
- 창궐
- 미중
- 진짜영웅
- Bolton
- 우한 코로나
- 전염병
- 우한
- 우한코로나
- 어서와한국은처음이지
- 정은경 본부장님
- parasite
- everybody wants you
- sharonchoi
- 확진자수
- cnn
- 최성재
- 우한코로나바이러스
- 필리핀사망
- 코로나19
- 신종코로나
- 중국외교부
- 코로나바이러스
- 웨일즈
- 봉준호감독통역
- red hearse
- 치앙마이
- wuhan
- 코로나
- 조현병
- Today
- Total
목록개발노트 (97)
오지's blog
makemigrations시 에러 발생 class Delivery():을 아래와 같이 수정후 해결 class Delivery(models.Model):
django에서 코딩중 다음과 같은 에러가 발생하였다.. OSError: [WinError 123] 파일 이름, 디렉터리 이름 또는 볼륨 레이블 구문이 잘못되었습니다: '' 인터넷 검색을 해도 import를 하면된다고 하는데 아무리 찾아도 import를 안한곳이 없다..... 문제는 무엇인가.. 그위를 보니 ModuleNotFoundError: No module named 'userstestapp' 이상하다 users와 testapp를 만든적이 잇어도 'userstestapp' 를 만든적이 없다..... 머지.......... 너무 간단하지만 하루가 꼬박 걸렸다. 물론 하루종일 생각한것은 아니고 하룻밤을 자고 잠시 딴생각을 하고 난뒤 보인것은 INSTALLED_APPS = [ 'django.contrib..
import sys print(sys.version) 혹은 from sys import version print(version)
https://medium.com/@hbayraktar/how-to-setup-lets-encrypt-ssl-for-apache-on-ubuntu-18-04-cfa97a83bc08 How to Setup Let’s Encrypt SSL for Apache on Ubuntu 18.04 1-Apache Vhost Configuration medium.com 2-Add Certbot PPA and Install Certbot You’ll need to add the Certbot PPA to your list of repositories. sudo apt-get install software-properties-common sudo add-apt-repository ppa:certbot/certbot sudo..
어디서 출발지 이고 어디가 목적지 인지만 정확히 하면 맥이든 ubuntu이든 어렵지 않다. 1. 맥북에서 ssh로 aws접속하는 방법 (맥 -> aws) ssh -i [pem파일 경로] [username@aws ip address] ssh -i ".../webserver.pem" ubuntu@1.1.1.1 2. scp로 맥북AWS같 파일 다운로드 업로드 방법 scp [option] 출발지(업로드하는 곳):도착지(다운로드하는 곳) 2-1. 맥북에서 aws로 파일 업로드하는 방법(AWS로 터미널 접속) (맥 -> aws) scp -i [pem파일 경로] [업로드 하는곳: 맥북] [다운로드하는 곳: AWS] 즉, scp -i [pem파일 경로] [맥 컴퓨터의 업로드할 파일 경로 및 파일 이름] [usernam..
간단한 텍스트 이메일 보내기 및 MIME을 구성하여 첨부파일도 함께 보내기 간단한 텍스트 이메일https://github.com/ojjy/pub_practice/blob/master/python/14_1_send_email_basic.py 첨부파일도 함께(문제: 한글은 인식이 안되고 폴더내 파일 모두 보내게됨)https://github.com/ojjy/pub_practice/blob/master/python/14_2_send_email_attach.py
try-except and raise 연습 에러 명을 알때try: 실행코드except 에러명: 에러가 발생할때 실행코드 ex.try: with open('text_file_name.txt', 'r') as fp: fp.readline()except FileNotFoundError: print("파일 미존재") 일부러 에러 발생 raise https://github.com/ojjy/pub_practice/blob/master/python/11_try_except.py
파이썬을 이용한 압축 풀기 및 압축 하기 코딩 https://github.com/ojjy/pub_practice/blob/master/python/10_zipunzip.pyhttps://github.com/ojjy/pub_practice/blob/master/python/10_1_ospractices.py
packing unpacking 복습 swapa,b=b,aenumerate(리스트명) => index, value딕트명.items()=>key, valueos.walk(경로) =>현재 경로, 현재경로에서 하위 폴더, 그 경로내 파일들 iteration 단 true인경우 top-down, false인경우 bottom-up https://github.com/ojjy/pub_practice/blob/master/python/9_packunpack.py
4자리수를 임의로 생성하고 사용자가 4자리수를 입력한다. 여기서 자리수와 같은수가 있음 cow 자리수는 다르지만 같은수면 bull로 판정한다. 예를들어 9876을 임의로 생성하고 사용자가 4866을 입력하면 세번째와 첫번째 자리 각각 8과 6은 자리수와 같은수 이므로 2 cow 두번째 자리의 6은 자리수는 다르지만 같은수를 입력했으므로 bull이 된다. 즉 , 2 cow and 1 bull이 된다. https://github.com/ojjy/pub_practice/blob/master/python/8_cow_and_bull.pyhttps://github.com/ojjy/pub_practice/blob/master/python/8_cow_and_bull.txt