개발 100

[python 기초] 엑셀에 구구단 출력하기

Python 과 python 모듈 openpyxl 을 이용해서 엑셀에 구구단을 출력해 봅시다. openpyxl 설치 site : openpyxl.readthedocs.io/en/stable/index.html openpyxl - A Python library to read/write Excel 2010 xlsx/xlsm files — openpyxl 3.0.5 documentation Install openpyxl using pip. It is advisable to do this in a Python virtualenv without system packages: Warning To be able to include images (jpeg, png, bmp,…) into an openpyxl file,..

개발/python 2021.01.05

python - 다음 일봉 크롤링

파이썬으로 다음사이트에서 일봉을 크롤링해와 봅시다~~ # 다음 금융 일봉 크롤링 import requests from bs4 import BeautifulSoup import json url = 'https://finance.daum.net/api/charts/A066570/days?limit=200&adjusted=true' headers = { "referer": "https://finance.daum.net/chart/A005930", "user-agent": "Mozilla/5.0" } params = { "limit": "200", "adjusted": "true" } r = requests.get(url, headers=headers, params=params) szContent = r.tex..

개발/python 2020.12.19

Unable to list target platforms. Please make sure the android sdk path is correct. See the Console for more details

Unable to list target platforms. Please make sure the android sdk path is correct. See the Console for more details Android SDK를 업데이트 후에 Unity 에서 위와 같은 오류로 Android 기기로 빌드 오류가 발생했는데업데이트된 SDK 또는 Build Tool 과 Unity간의 문제가 있는것 같다. tools_r25.2.5-macosx.zip 파일을 다운받아서, SDK 폴더의 기존의 Tools 폴더를 이름을 바꾼후 다운받은 폴더를 Tools 폴더에 넣으니 해결이 되었다.

개발/기타 2017.05.03

Prism 를 이용한 코드조각 만들기

정말 오랜만에 글하나 올리네요. Prism 를 이용해서 Code snippet 을 blog에 게시하는 방법을 몇자 적어 봅니다.http://prismjs.com/ 에서 Download 를 눌러서 다운로드 페이지로 이동합니다.필요한 테마와 언어를 선택하고 JS 와 CSS 파일을 다운로드 합니다.그런다음...블로그에 두개의 파일을 업로드 하고헤더에body 맨 아래// Use this for initialization void Start () { LeanTween.move(this.gameObject, this.gameObject.transform.position + new Vector3(0, 4, 0), 2f).setDelay(1f); } // Update is called once per frame voi..

개발/기타 2017.03.23

keytool password 변경하기

keytool password 변경하기 Keystore only has one password. You can change it using keytool:keytool -storepasswd -keystore my.keystore To change the key's password:keytool -keypasswd -alias -keystore my.keystore -- help키 및 인증서 관리 툴 명령: -certreq 인증서 요청을 생성합니다. -changealias 항목의 별칭을 변경합니다. -delete 항목을 삭제합니다. -exportcert 인증서를 익스포트합니다. -genkeypair 키 쌍을 생성합니다. -genseckey 보안 키를 생성합니다. -gencert 인증서 요청에서 인증서를 ..

개발/Android 2016.03.06