파일 읽어서 json으로 변환해서 출력해주는 코드 12345678910111213141516171819202122232425import json '''1.파일을 읽는다.2.읽어서 list로 만든다.3.json을 읽는다.4.json을 encoding한다. dict로 뽑힌다.startTimeStamp, endTimeStamp를 뽑아서 list에 담는다.list를 파일에 쓴다.'''def readFiles(sFileLocation, sFromFileName): with open(sFileLocation + sFromFileName, mode="rt", encoding='utf-8') as f: stringList = f.readlines() item = stringList[0] print(item) for i..
.search() 패턴 매칭한 결과를 re.Match로 돌려줍니다. import re pattern = "\[가-힣\]\[0-9\]{1,3}:\[0-9\]{1,3} " r = re.search(pattern, line).group(0) print(type(r), r) .findall() - 모두 찾기 패턴에 매칭되는 모든 문자열을 찾아서 list로 리턴함 r = re.compile('[가-힣]{1,2}').findall('김5:5') r2 = re.compile('[0-9].+').findall('김5:5') print(type(r), r) print(type(r2), r2) 결과 ['김'] ['5:5'] .sub() - 찾아서 바꾸기 혹은 지우기 hello - aoeu를 hello*aoeu로 바꾼다. ..
React App 빌드 및 Nginx 연동(배포) 동영상 강의 Nginx에 내가 만든 react app띄우기reactnode js로 개발용 서버를 띄울 수 있습니다. 하지만 nginx를 쓰는 이유는 실제 현장에서 운영용으로는 nginx를 많이 사용합니다. 목차는 아래와 같습니다.1.react app빌드-create-react-app2.Nginx 로컬에 설치- wnmp(window nginx mariadb php)3.nginx의 root를 project/build로 변경하기4.build 하기 end.
1초에 한번씩 google.com 페이지를 스크래핑 하는 크롤러를 파이썬(python)으로 만들어 보자 결과는 위와 같이 나오면 된다. 참고 포스트2017/03/30 - [강의/Node.js] - 크롤링(Crawling)이란? 또는 파싱(Parsing)이란? 스크래핑이란?2017/05/14 - [Language/Python] - 파이썬 크롤러 만들기2017/05/10 - [Language/Python] - python thread로 3초에 1번씩 hello 출력하는 코드 정기적으로 크롤링 하는 코드를 만들어 보겠다.1초에 한번씩 www.google.com을 호출 해서 데이터를 console 창에 출력하는 그런 프로그램이다. 소스코드는 아래와 같다.1234567891011121314151617181920f..
python thread로 3초에 1번씩 hello 출력하는 코드 파일명 : __main__.py from threading import Thread from time import sleep def printHello(): while True: print("hello") sleep(3) def main(): th = Thread(target=printHello) th.demon = True th.start() if __name__ == '__main__': main() parameter넘기기 def printHello(url, num): pageString = crawl(url) for i in range(0, 1000): url = urls[i] th = Thread(target=printHello, ..
cross domain ajax call 하기 1234567891011121314151617$.ajax({ type:"GET", url: url, data:parameter, dataType: "JSONP", cache:false, crossDomain:true, contentType: 'application/json; charset=utf-8', success:function(data){ console.log(data) }, error: function(XHR, textStatus, errorThrown) { console.log(XHR); console.log(textStatus); console.log(errorThrown); }});Colored by Color Scriptercs 기본적인 코드는..
- Total
- Today
- Yesterday
- 도커컨테이너
- 싱가폴
- docker container case
- 이직
- 도커티슈박스
- docker container tissue
- Linux
- Sh
- 2017 티스토리 결산
- 도커각티슈박스
- 도커티슈케이스
- vim
- docker container tissue box
- docker container
- docker container whale
- 도커각티슈케이스
- shellscript
- 개발자
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |