일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Aspose.cells
- MYSQL
- Kakao API Address
- 스크롤 사라짐
- 한글깨짐
- MS-SQL
- 초딩수학
- python
- Banker's
- Android
- 시트 탭 사라짐
- 나만의 상점
- 가로 스크롤 막대
- 업비트
- Request.Form
- upbit
- 일본여행
- MSSQL
- LEFT JOIN
- 세로 스크롤 막대
- swift 화면전환
- rounding
- league of legends
- 썸머노트
- Excel
- Oracle
- .csv
- CSV
- Banker's rounding
- chart.js
- Today
- Total
목록[3] Development (101)
DBA
출처 : https://developer.android.com/guide/components/fragments#java 프래그먼트 | Android 개발자 | Android Developers A Fragment represents a behavior or a portion of user interface in an Activity. You can combine multiple fragments in a single activity to build a multi-pane UI and reuse a fragment in multiple activities. You can think of a fragment as a modular section developer.android.com
아래 링크를 클릭 하면, Mac 버전과 Windows 버전을 비교 하면서 볼 수 있다. 링크 : https://developer.android.com/studio/intro/keyboard-shortcuts?hl=ko 단축키 | Android 개발자 | Android Developers Android 스튜디오에서 지원되는 다양한 일반 작업의 단축키를 확인하세요. developer.android.com
출처: https://developer.android.com/guide/components/activities/activity-lifecycle
메뉴얼 https://github.com/FinanceData/FinanceDataReader/wiki/Users-Guide GitHub - FinanceData/FinanceDataReader: Financial data reader Financial data reader. Contribute to FinanceData/FinanceDataReader development by creating an account on GitHub. github.com https://github.com/FinanceData/OpenDartReader GitHub - FinanceData/OpenDartReader: Open DART Reader Open DART Reader. Contribute to FinanceDat..
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..