python 讀取股本變遷資料

2021-08-20 20:42:34 字數 1470 閱讀 6008

import

baostock as bs  

import

pandas as pd  

#### 登陸系統 ####

lg = bs.login(user_id="anonymous"

, password=

"123456"

)  # 顯示登陸返回資訊

print

('login respond error_code:'

+lg.error_code)  

print

('login respond  error_msg:'

+lg.error_msg)  

#### 查詢除權除息資訊####

# 查詢2023年除權除息資訊

rs_list =   

rs_dividend_2015 = bs.query_dividend_data(code="sh.600000"

, year=

"2015"

, yeartype=

"report"

)  while

(rs_dividend_2015.error_code == 

'0') & rs_dividend_2015.next():  

# 查詢2023年除權除息資訊

rs_dividend_2016 = bs.query_dividend_data(code="sh.600000"

, year=

"2016"

, yeartype=

"report"

)  while

(rs_dividend_2016.error_code == 

'0') & rs_dividend_2016.next():  

# 查詢2023年除權除息資訊

rs_dividend_2017 = bs.query_dividend_data(code="sh.600000"

, year=

"2017"

, yeartype=

"report"

)  while

(rs_dividend_2017.error_code == 

'0') & rs_dividend_2017.next():  

result_dividend = pd.dataframe(rs_list, columns=rs_dividend_2017.fields)  

# 列印輸出

print

(result_dividend)  

#### 結果集輸出到csv檔案 ####   

result_dividend.to_csv("d:\\history_dividend_data.csv"

, encoding=

"gbk"

,index=

false

)  #### 登出系統 ####

bs.logout()  

Python 讀取資料

將乙個資料夾下面的影象和對應的pts讀進來,然後把pts檔案裡面的資料讀入乙個陣列,然後畫到影象上 coding utf 8 測試資料樣例 讀取 image cv2.imread fullpath 讀取對應的pts檔案 landmarks readlmk ptsfile for point in l...

Python 讀取資料

將乙個資料夾下面的影象和對應的pts讀進來,然後把pts檔案裡面的資料讀入乙個陣列,然後畫到影象上 coding utf 8 測試資料樣例 讀取 image cv2.imread fullpath 讀取對應的pts檔案 landmarks readlmk ptsfile for point in l...

資料整理 TCP狀態變遷

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 資料整理 tcp狀態變遷 開始 傳說中的3次握手。1.closed 起始點。在超時或者連線關閉的時候進入此狀態。2.listen server 端在等待連線過來的時候所處的狀態,s...