일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- chart.js
- 한글깨짐
- 스크롤 사라짐
- LEFT JOIN
- Android
- 초딩수학
- CSV
- Banker's
- 일본여행
- 썸머노트
- swift 화면전환
- league of legends
- MSSQL
- Banker's rounding
- 나만의 상점
- rounding
- MS-SQL
- .csv
- Aspose.cells
- 시트 탭 사라짐
- Request.Form
- upbit
- Excel
- 가로 스크롤 막대
- Oracle
- MYSQL
- 업비트
- Kakao API Address
- python
- 세로 스크롤 막대
- Today
- Total
목록[3] Development/Python (9)
DBA
Anaconda URL : https://www.anaconda.com/ Anaconda | The World's Most Popular Data Science Platform Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities. www.anaconda.com Pycharm URL : https://www.jetbrains.com/ko-kr/pycharm/download/#section=windows 다운로드 PyCharm: JetBrains가 만든 전문 개발자용 Python IDE www.jetbrain..
Telegram을 실행하고 BotFather와 대화를 해서 token을 받는다. Json Dumps Bot과 대화를 해서 Json 형식의 내 정보를 받는다. (id -> chat_id) python 터미널 에서 아래 명령어를 실행해서 Telegra을 설치 한다. pip install python-telegram-bot import telegram # Bot Father가 알려준 token정보 bot = telegram.Bot(token='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa') # Json Dumps Bot이 알려준 id bot.sendMessage(chat_id=111111111, text='하이, StarDBA') token, chat_id는 위에서 알아온 자신의..
PyInstaller : https://pyinstaller.org/en/stable/ PyInstaller Manual — PyInstaller 5.0.1 documentation PyInstaller bundles a Python application and all its dependencies into a single package. The user can run the packaged app without installing a Python interpreter or any modules. PyInstaller supports Python 3.7 and newer, and correctly bundles many major P pyinstaller.org pip install -U pyinstal..
import pymssql from pandas import DataFrame cursor.execute("select * from TableName") row = cursor.fetchall() data_name = ["id", "name", "englishName", "teamID", "email"] df = DataFrame(row, columns=data_name) print(df) pandas.read_sql() 사용 import pymssql from pandas import * conn = pymssql.connect(host="", port=, user="sa", password="", database="EXAMPLE", charset="utf8") sql = "select id, name..
# mssql 모듈 설치 $ pip install pymssql # MSSQL 접속 conn = pymssql.connect(host="", port=, user="sa", password="", database="EXAMPLE", charset="utf8") cursor = conn.cursor() cursor.execute("select * from TableName") row = cursor.fetchone() while row: print(row[0], row[1], row[2], row[3]) row = cursor.fetchone() conn.close()
아나콘다 최신 버전 설치 후 PyQt5 등 설치 낮은 버전을 요구 할때 spyder 4.0.1 requires pyqtwebengine= "3", which is not installed. spyder 4.0.1 has requirement pyqt5= "3", but you'll have pyqt5 5.15.0 which is incompatible 관련 에러 anaconda prompt를 우클릭 - 관리자 권한으로 실행 pip install pyqt5==5.12.0 pip install pyqtwebengine==5.12.0 이렇게 했을때 맞는 버전이 있으면 설치가 되고 없으면 설치가능한 버전을 리스트업 해준다. 그 중에 골라서 다시 시도 하면 된다. 여튼 필자같은 경우는 chart를 설치 했는데 s..
ticker = "KRW-BTC" #DataFrame으로 받기 df = pyupbit.get_ohlcv(ticker=ticker, interval="day", count=2000) #2021년, 2022년 치만 df = df.loc["2021":"2022"] df.to_excel("upbit_"+ticker+"_data.xlsx") count가 default = 200 이다.
Python 시그널(이벤트) 위젯에 정의된 이벤트 = 시그널(signal) 시그널(이벤트) 발생 이벤트가 발생할 때 호출되는 함수나 메서드 = 슬롯(slot) btn.clicked.connect(self.btn_clicked) clicked 마우스 클릭을 한다. self.btn_clicked mysignal = MySignal() mysignal.signal1.connect(self.signal1_emitted) mysignal.run() class MySignal(QObject): signal1 = pyqtSignal() def run(self): self.signal1.emit() run() 이라는 메서드가 있는데 해당 메서드에서는 우리가 정의한 시그널인 'signal1'에서 emit() 메서드를 호..