전체 글 159

[python] Covid19 정보조회

지난 포스팅에서 Golang으로 #Covid19 각국의 감염정보를 조회하는 방법을 알아봤다 https://xwing.tistory.com/169 이번엔 같은 정보를 파이썬으로 만들어 보겠다. import pandas as pd import numpy as np import matplotlib.pyplot as plt import requests import json r = requests.get('https://api.covid19api.com/dayone/country/korea-south/status/confirmed', stream=False) html = r.text items = json.loads(html) df = pd.DataFrame(items) #print (df) df.to_excel..

개발/python 2021.01.28

[golang] Covid19 정보 조회

Covid19 1년넘게 지겹게 우릴를 괴롭히고 있는는 #Covid19에 대한 정보를 얻을 수 있는 공개된 API는 이미 많이 있다.. 구글검색 조금만 하면 쉽게 찾을 수 있다. 이번엔 API를 이용해서 우리나라의 코로나19 감염발생자수를 조회해 보자 package main import ( "encoding/json" "fmt" "io/ioutil" "net/http" ) type Country struct { Country string CountryCode string Province string City string CityCode string Lat string Lon string Cases int Status string Date string } func main() { url := "https:/..

개발/go 2021.01.27

[python 기초] 엑셀에 달력출력하기

Python 과 openpyxl 을 이용해서 달력을 엑셀에 출력해 봅시다 # 달력 출력하기 from openpyxl import styles from openpyxl.styles.borders import Border, Side from openpyxl.styles import Font, Color, Alignment from openpyxl import Workbook import openpyxl import calendar import datetime BORDER_NONE = None BORDER_DASHDOT = 'dashDot' BORDER_DASHDOTDOT = 'dashDotDot' BORDER_DASHED = 'dashed' BORDER_DOTTED = 'dotted' BORDER_DOUBL..

개발/python 2021.01.07

[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

가계부2 브랜치 작업

가계부2 앱 브랜치 분기해서 기록하기앱설명서 : http://xwing.tistory.com/87다운로드 : https://play.google.com/store/apps/details?id=com.xwing.util.Gagebu 가계부2 최신버전을 받습니다. version 4.7 이상 브랜치 기능이 있습니다. 기타메뉴에서(오른쪽) 제일 아래쪽의 분기 작업을 선택합니다. 브랜치명을 선택한후 브랜치 생성 버튼을 누르면, 바로 분기가 됩니다. 이제 목록으로 오면 기존의 내용이 보이지 않고, 빈화면이 나타납니다. 이제부터 입력하는 것은 새로운 브랜치에만 적용됩니다. 다시 원래 브랜치로 돌아갈려면 , 분기작업 화면에서 [기본] 브랜치를 선택하면 됩니다. 스샷은 나중에 추가.. ㅎㅎ감사합니다.

2018.01.24