일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PyQt
- IOS
- MySQL
- GIT
- urllib
- mssql
- node.js
- 라즈베리파이
- python
- sqlite
- PER
- MS-SQL
- ASP
- 맛집
- javascript
- PyQt5
- Excel
- flutter
- 함수
- ubuntu
- 유니티
- Linux
- Unity
- 날짜
- port
- 리눅스
- pandas
- swift
- 다이어트
- tensorflow
목록랭귀지/python (244)
아미(아름다운미소)
1. JSONJSON은 JavaScript Object Notation의 약자로서 JavaScript 문법에 영향을 받아 개발된 Lightweight한 데이타 표현 방식입니다. JSON은 데이타를 교환하는 한 포맷으로서 그 단순함과 유연함 때문에 널리 사용되고 있습니다. 특히 웹 브라우져와 웹서버 사이에 데이타를 교환하는데 많이 사용되고 있습니다. 가장 많이 사용되는 JSON 포맷은 Key-Value Pair의 컬렉션입니다. Python은 기본적으로 JSON 표준 라이브러리(json)를 제공하고 있는데, "import json" 을 사용하여 JSON 라이브러리를 사용할 수 있습니다. (주: Python 2.6 이상). JSON 라이브러리를 사용하면, Python 타입의 Object를 JSON 문자열로 변..
파이썬에서 파일을 다운로드하는 방법- Python 2에서 파일을 다운로드하는 방법 import urllib urllib.urlretrieve ("http://www.example.com/songs/mp3.mp3", "mp3.mp3") (Python 3+에서는 'import urllib.request'와 urllib.request.urlretrieve를 사용하십시오) - 파이썬에서 파일을로드하는 방법(진행 표시 줄) import urllib2 url = "http://download.thinkbroadband.com/10MB.zip" file_name = url.split('/')[-1] u = urllib2.urlopen(url) f = open(file_name, 'wb') meta = u.info()..
youtube-dl 설치 - curl 사용 $ sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl $ sudo chmod a+rx /usr/local/bin/youtube-dl - wget 사용 $ sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl $ sudo chmod a+rx /usr/local/bin/youtube-dl - pip 사용 $ sudo -H pip install --upgrade youtube-dl - brew 사용 $ brew install youtube-dl - MacPorts ..
python pyscreenshot - pyscreenshot 설치 $ pip install pyscreenshot - 스크린 캡쳐 import pyscreenshot as ImageGrab img=ImageGrab.grab() saveas='ScreenShot.bmp' img.save(saveas)
구글 Finance 에서 코스피 가져오기 - pandas_datareader 설치 $ pip install pandas_datareader - 구글 Finance 에서 코스피 가져오기 from pandas_datareader import data, wb from datetime import datetime - 구글에서 코스피 지수를 받는 예시를 살펴보겠습니다.기본적으로 기간이 설정되지 않으면, 2010년 01월 01일을 기준으로 오늘까지의 데이터를 받아옵니다. df = data.DataReader("KRX:KOSPI", "google") - 만약, 2017년의 데이터만 받아오고 싶다면,다음과 같이 기간을 설정해줄 수 있습니다. df = data.DataReader( "KRX:KOSPI" # name "g..
파이썬에서 cv2 파일의 프레임 정보를 확인하는 법 - OpenCV - Python 설치 $ sudo apt-get install opencv - cv2 파일의 프레임 정보 확인 import cv2 cap = cv2.VideoCapture(fn) if not cap.isOpened(): print "could not open :",fn return length = int(cap.get(cv2.cv.CV_CAP_PROP_FRAME_COUNT)) width = int(cap.get(cv2.cv.CV_CAP_PROP_FRAME_WIDTH)) height = int(cap.get(cv2.cv.CV_CAP_PROP_FRAME_HEIGHT)) fps = cap.get(cv2.cv.CV_CAP_PROP_FPS)
파이썬의 OpenPyXL을 이용한 엑셀 문서 처리 파이썬은 엑셀 관련 작업에서 발생할 수 있는 처리하기 곤란한 일들을 자동화할 수 있기 때문에 엑셀 파일을 처리하는 방식에 큰 변화를 가져올 수 있습니다. 예를 들어, 회사 예산에 관련된 수백 개의 스프레드시트에서 특정 정보를 찾아야 할 수 있습니다. 굉장히 곤란한 일이지 않을까요? 파이썬을 이용해 엑셀 문서 작업을 손쉽게 수행하는 방법을 보여드리겠습니다. OpenPyXL 설치 pip install openpyxl - 간단한 예제 from openpyxl import Workbook wb = Workbook() # grab the active worksheet ws = wb.active # Data can be assigned directly to cell..
[python] 파일, 디렉터리 조작 디렉터리, 파일, 확장자 분리 (get directory and file, extension) import os fullpath = '/home/aaa/bbb/ccc.txt' print(os.path.dirname(fullpath)) # '/home/aaa/bbb' print(os.path.basename(fullpath)) # 'ccc.txt' print(os.path.split(fullpath)) # ('/home/aaa/bbb', 'ccc.txt') print(os.path.splitext(fullpath)) # ('/home/aaa/bbb/ccc', '.txt') 파일 확인 (check file exists) print(os.path.exists('/home/..
[python] PyMySQL을 이용한 MySQL 사용법 예제 파이썬에서 PyMySQL을 이용한 MySQL 사용법을 알아보겠습니다. PyMySQL을 설치합니다. $ pip install PyMySQL MySQL 접속 아이디는 user이고, 패스워드는 설정되지 않은 것으로 가정합니다. 데이터베이스(database) 생성 import pymysql.cursors conn = pymysql.connect(host='localhost', user='user', password=None, charset='utf8mb4') try: with conn.cursor() as cursor: sql = 'CREATE DATABASE test' cursor.execute(sql) conn.commit() finally: c..
python을 이용하여 간단한 REST client를 만들어 보겠습니다. 먼저 http request를 위해 사용할 라이브러리로 httplig2를 선택하였습니다. httplib2 : https://github.com/httplib2/httplib2 httplib2를 설치 $ pip install httplib2 설치를 완료했으면 간단하게 테스트를 해보겠습니다. 아래의 코드를 작성하고 실행해 봅니다. import httplib2 http = httplib2.Http() url = 'https://jsonplaceholder.typicode.com/posts/1' response, content = http.request(url, 'GET') print(content) 아래와 같은 content가 나오면 성..