summarylogtreecommitdiffstats
path: root/changelog.md
blob: 75fdda5b1f37402b4285fe546c496f8efca7d0af (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
# [AKShare](https://github.com/akfamily/akshare) 版本更新

```
0.1.25: 增加奇货可查指数接口 e.g. ak.get_qhkc_data("商品指数")

0.1.26: 修复代码格式问题

0.1.27: 修复说明格式问题

0.1.28: 更新说明文档

0.1.29: 规范说明文档格式

0.1.30: 规范说明文档格式

0.1.31: 规范 cot.py 函数说明

0.1.32: update basis.py

0.1.33: 
增加奇货可查数据三个接口:
get_qhkc_index, get_qhkc_index_trend, get_qhkc_index_profit_loss
使用方法请 help(get_qhkc_index) 查看

0.1.34: 
增加奇货可查-资金数据三个接口:
get_qhkc_fund_position_change, get_qhkc_fund_bs, get_qhkc_fund_position
使用方法请 help(get_qhkc_fund_position_change) 查看

0.1.35: 
增加奇货可查-工具-外盘比价接口:
get_qhkc_tool_foreign
使用方法请 help(get_qhkc_tool_foreign) 查看

0.1.36
增加奇货可查-工具-各地区经济数据接口:
get_qhkc_tool_gdp
使用方法请 help(get_qhkc_tool_gdp) 查看

0.1.37
增加中国银行间市场交易商协会-债券接口
get_bond_bank
使用方法请 help(get_bond_bank) 查看

0.1.38
修正小异常

0.1.39
模块化处理

0.1.40
统一接口函数参数 start --> start_day; end --> end_day

0.1.41
更新大连商品交易所-苯乙烯-EB品种

0.1.42
更新上海期货交易所-上海国际能源交易中心-20号胶-NR品种
更新上海期货交易所-不锈钢-SS品种

0.1.43
修改 example --> test.py 函数调用

0.1.44
修复 example --> daily_run.py 函数调用

0.1.45
修复 README.md 函数接口调用说明和感谢单位

0.1.46
修复 README.md 图片显示

0.1.47
修复 README.md 增加说明部分

0.1.48
更新大连商品交易所-粳米-RR品种

0.1.49
增加智道智科-私募指数数据接口
使用方法请 help(get_zdzk_fund_index) 查看

0.1.50
更新 README.md 文件

0.1.51
更新官方文档: https://akshare.readthedocs.io

0.1.52
增加量化策略和量化平台板块

0.1.53
增加期货品种列表和名词解释

0.1.54
修改 AkShare的初衷, 增加管理期货策略指数

0.1.55
新增 99期货(http://www.99qh.com/d/store.aspx) 库存数据接口

0.1.56
修复 99期货(http://www.99qh.com/d/store.aspx) 库存数据接口

0.1.57
更新 md 文件数据接口

0.1.58
更新 md 文件数据接口

0.1.59
更新 md 文件数据接口

0.1.60
更新 致谢部分, 申明借鉴和引用的 package

0.1.61
更新说明文档

0.1.62
提供英为财情-股票指数-全球股指与期货指数数据接口
https://cn.investing.com/indices/

0.1.63
更新说明文档-致谢英为财情

0.1.64
更新 get_country_index 返回格式为日期索引

0.1.65
更新 get_country_index 返回格式数据开盘, 收盘, 高, 低为浮点型

0.1.66
提供英为财情-债券数据-全球政府债券行情与收益率
https://cn.investing.com/rates-bonds/
新增 get_country_bond 返回格式数据开盘, 收盘, 高, 低为浮点型

0.1.67
更新说明文档-私募指数数据说明

0.1.68
更新说明文档-私募指数数据说明-增加图片

0.1.69
更新说明文档-债券说明格式调整

0.1.70
更新大商所, 郑商所商品期权数据接口

0.1.71
更新大商所, 郑商所, 上期所商品期权数据接口

0.1.72
修改大商所, 郑商所, 上期所商品期权数据接口
增加函数说明
更新说明文档-期权部分

0.1.73
更新说明文档-期权部分

0.1.74
更新说明文档格式调整

0.1.75
新增外汇接口, 银行间债券市场行情数据接口

0.1.76
更新说明文档

0.1.77
新增全球期货历史数据查询接口

0.1.78
新增全球宏观数据-中国年度、月度CPI数据, 年度M2数据

0.1.79
更新说明文档

0.1.80
更新说明文档-刷新

0.1.81
新增全球宏观数据-中国宏观数据
中国年度PPI数据
中国年度PMI数据 
中国年度GDP数据
中国年度财新PMI数据
中国外汇储备数据
中国电力能源数据
中国年度非制造业PMI数据
人民币中间报价汇率

0.1.82
新增全球宏观数据-美国宏观数据
美联储利率决议报告
美国非农就业人数报告
美国失业率报告
美国EIA原油库存报告

0.1.83
更新说明文档

0.1.84
新增全球宏观数据-美国宏观数据
美国初请失业金人数报告美国核心
PCE物价指数年率报告
美国CPI月率报告
美联储劳动力市场状况指数报告
美国ADP就业人数报告
美国国内生产总值(GDP)报告
美国原油产量报告
新增全球宏观数据-欧洲宏观数据
欧洲央行决议报告
新增全球宏观数据-机构宏观数据
全球最大黄金ETF—SPDR Gold Trust持仓报告
全球最大白银ETF--iShares Silver Trust持仓报告
欧佩克报告

0.1.85
新增期货-仓单有效期接口

0.1.86
更新说明文档

0.1.87
新增和讯财经-企业社会责任数据接口

0.1.88
更新说明文档

0.1.89
更新requirements.txt

0.1.90
更新setup.py

0.1.91
新增和讯财经-中国概念股行情及日频历史数据接口

0.1.92
更新说明文档

0.1.93
新增交易法门-套利工具-跨期价差(自由价差)数据接口

0.1.94
新增生意社-商品与期货-现期图数据接口
新增西本新干线-指数数据

0.1.95
新增新浪财经-期货-实时数据接口

0.1.96
修正新浪财经-期货-实时数据接口-返回 current_price 字段为实时数据

0.1.97
修正新浪财经-期货-实时数据接口-返回 current_price 和 ask_price 字段为实时数据

0.1.98
修正版本更新错误

0.1.99
增加自动安装 pillow

0.2.1
增加港股当日(时点)行情数据和历史数据(前复权和后复权因子)

0.2.2
增加美股当日(时点)行情数据和历史数据(前复权因子)

0.2.3
增加金融期权

0.2.4
增加加密货币行情接口

0.2.5
增加 AKShare 接口导图

0.2.6
更新港股数据接口和说明文档

0.2.7
更新 qhkc 接口注释和说明文档

0.2.8
更新说明文档

0.2.9
更新A+H股数据实时行情数据和历史行情数据(后复权)

0.2.10
更新说明文档

0.2.11
更新说明文档

0.2.12
增加A股实时行情数据和历史行情数据

0.2.13
统一股票接口命名

0.2.14
统一股票接口命名, 去除 get

0.2.15
增加科创板实时行情数据和历史行情数据

0.2.16
增加银保监分局本级行政处罚数据

0.2.17
更新说明文档

0.2.18
修正银保监分局本级行政处罚数据接口字段命名

0.2.19
增加 Nodejs 安装说明

0.2.20
增加 Realized Library 接口

0.2.21
更新说明文档

0.2.22
更新说明文档

0.2.23
修正银保监分局本级行政处罚数据接口反扒升级-修改完成

0.2.24
增加FF多因子模型数据接口

0.2.25
更新说明文档

0.2.26
修正期货-实时行情: 接口命名, 字段补充及限制访问速度

0.2.27
增加新浪-外盘期货实时行情数据接口

0.2.28
修正新浪-外盘期货实时行情数据引入
更新文档

0.2.29
更新文档

0.2.30
监管-银保监: 反扒措施在变化, 更新接口
修正期货-国内-实时行情接口订阅问题

0.2.31
修正期货-国内-金融期货实时行情接口订阅问题

0.2.32
更新说明文档

0.2.33
更新说明文档-期货-外盘

0.2.34
新增新浪-指数实时行情和历史行情接口

0.2.35
新增新浪-指数和A股实时行情列表获取问题

0.2.36
新增腾讯财经-A股分笔行情历史数据

0.2.37
新增金十数据-实时监控接口

0.2.38
更新说明文档

0.2.39
更新说明文档目录结构
增加专题教程-pandas专题-连载

0.2.40
更新专题板块

0.2.41
更新说明文件

0.2.42
更新mindmap

0.2.43
重构说明文档-模块化处理, 将 github 说明文档和 docs 在线文档分开处理
重构私募指数接口

0.2.44
增加日出和日落模块

0.2.45
增加河北空气指数数据

0.2.46
更新 requirements.txt

0.2.47
添加初始化文件

0.2.48
添加 websocket-client

0.2.49
南华期货-南华商品指数

0.2.50
修正英为财情-指数板块的成交量显示问题

0.2.51
消除部分警告信息

0.2.52
基差数据缺失错误提示修正

0.2.53
统一南华期货-商品指数历史走势-收益率指数
新增南华期货-商品指数历史走势-价格指数
新增南华期货-商品指数历史走势-波动率指数

0.2.54
添加 numpy 依赖

0.2.55
更新已实现波动率的说明文档
统一 ff_crr --> article_ff_crr

0.2.56
新增经济政策不确定性(EPU)数据接口
更新说明文档
修改示例说明

0.2.57
修改 air_hebei 接口, 默认返回全部城市

0.2.58
新增微博指数

0.2.59
增加西本新干线说明文档

0.2.60
新增百度指数

0.2.61
修正河北空气数据代码

0.2.62
新增百度搜索指数
新增百度资讯指数
新增百度媒体指数

0.2.63
更新指数-legend代码

0.2.64
fix pillow>=6.2.0

0.2.65
新增谷歌指数

0.2.66
修正南华指数URL硬编码问题

0.2.67
修正 get_futures_index 函数中上海期货交易所
CU 出现 cuefp 数据导致指数合成异常的问题

0.2.68
降低 Python 版本要求

0.2.69
降低 Python 版本要求到 Python3.7.1

0.2.70
适配 VNPY 使用

0.2.71
交易法门数据接口

0.2.72
申万行业一级指数-实时

0.2.73
更新纯碱期货数据接口

0.2.74
新增AQI空气质量数据接口

0.2.75
新增申万一级指数接口

0.2.76
统一交易法门登录和数据获取接口

0.2.77
清楚冗余函数

0.2.78
Python 降级

0.2.79
Python 降级

0.2.80
Python 3.6

0.2.81
html5lib

0.2.82
websockets-8.1

0.2.83
修复 weibo_index 函数日期格式问题

0.2.84
修复 baidu_index 接口

0.2.85
临时修复 baidu_index 接口

0.2.86
lxml 降级

0.2.87
lxml 降级
更新安装时的错误处理

0.2.88
pypinyin 降级

0.2.89
全国空气质量数据数据格式规范为数值型

0.2.90
更新注册仓单的产品参数和异常错误

0.2.91
世界五百强公司排名接口

0.2.92
更新中国债券市场行情数据接口

0.2.93
增加自动测试模型

0.2.94
增加私募基金管理人信息公示接口

0.2.95
增加中国证券投资基金业协会-信息公示

0.2.96
修复交易法门登录验证码
由于交易法门-数据部分权限缘故, 需要注册后方可使用

0.2.97
更新说明文档

0.2.98
增加甲醇期权和PTA期权

0.2.99
更新外汇数据接口, 规范格式

0.3.0
猫眼电影实时票房

0.3.1
更新说明文档

0.3.2
更新说明文档

0.3.3
更新外盘期货行情订阅时, 统一字段名称与网页端一致

0.3.4
新增能源-碳排放权数据

0.3.5
新增世界各大城市生活成本数据

0.3.6
商品现货价格指数

0.3.7
修复百度指数日期问题

0.3.8
新增中国宏观数据接口和文档说明

0.3.9
新增中国宏观杠杆率数据

0.3.10
修改金融期权数据接口

0.3.11
修复实时票房数据接口

0.3.12
新增新浪主力连续接口

0.3.13
新增新浪主力连续列表

0.3.14
中国倒闭公司名单

0.3.15
中国独角兽名单
中国千里马名单

0.3.16
东方财富-机构调研

0.3.17
东方财富网-数据中心-特色数据-机构调研
机构调研统计
机构调研详细

0.3.18
修复自动测试接口

0.3.19
修复融资融券字段名匹配问题
增加东方财富网-数据中心-特色数据-股票质押

0.3.20
东方财富网-数据中心-特色数据-股权质押
东方财富网-数据中心-特色数据-股权质押-股权质押市场概况: http://data.eastmoney.com/gpzy/marketProfile.aspx
东方财富网-数据中心-特色数据-股权质押-上市公司质押比例: http://data.eastmoney.com/gpzy/pledgeRatio.aspx
东方财富网-数据中心-特色数据-股权质押-重要股东股权质押明细: http://data.eastmoney.com/gpzy/pledgeDetail.aspx
东方财富网-数据中心-特色数据-股权质押-质押机构分布统计-证券公司: http://data.eastmoney.com/gpzy/distributeStatistics.aspx
东方财富网-数据中心-特色数据-股权质押-质押机构分布统计-银行: http://data.eastmoney.com/gpzy/distributeStatistics.aspx
东方财富网-数据中心-特色数据-股权质押-行业数据: http://data.eastmoney.com/gpzy/industryData.aspx

0.3.21
东方财富网-数据中心-特色数据-商誉
东方财富网-数据中心-特色数据-商誉-A股商誉市场概况: http://data.eastmoney.com/sy/scgk.html
东方财富网-数据中心-特色数据-商誉-商誉减值预期明细: http://data.eastmoney.com/sy/yqlist.html
东方财富网-数据中心-特色数据-商誉-个股商誉减值明细: http://data.eastmoney.com/sy/jzlist.html
东方财富网-数据中心-特色数据-商誉-个股商誉明细: http://data.eastmoney.com/sy/list.html
东方财富网-数据中心-特色数据-商誉-行业商誉: http://data.eastmoney.com/sy/hylist.html

0.3.22
期货规则-交易日历数据表
更新2020交易日历数据

0.3.23
东方财富网-数据中心-特色数据-股票账户统计: http://data.eastmoney.com/cjsj/gpkhsj.html

0.3.24
移除-交易法门系列老函数
因为交易法门网站需要会员登录后访问数据

0.3.25
增加-交易法门-工具-套利分析接口
增加-交易法门-工具-交易规则接口

0.3.26
增加-交易法门-数据-农产品-豆油
增加-交易法门-数据-黑色系-焦煤
增加-交易法门-工具-持仓分析-期货分析
增加-交易法门-工具-持仓分析-持仓分析

0.3.27
交易法门-说明文档

0.3.28
增加-股票指数-股票指数成份股接口

0.3.29
增加-股票指数-股票指数成份股接口-代码注释

0.3.30
增加-义乌小商品指数

0.3.31
修复-银保监分局本级行政处罚数据接口
接口重命名为: bank_fjcf_table_detail

0.3.32
新增-中国电煤价格指数

0.3.33
修复-银保监分局本级行政处罚数据接口-20200108新增字段后适应

0.3.34
增加-交易法门-工具-期限分析-基差日报
增加-交易法门-工具-期限分析-基差分析
增加-交易法门-工具-期限分析-期限结构
增加-交易法门-工具-期限分析-价格季节性

0.3.35
更新说明文档

0.3.36
# 交易法门-工具-仓单分析
增加-交易法门-工具-仓单分析-仓单日报
增加-交易法门-工具-仓单分析-仓单查询
增加-交易法门-工具-仓单分析-虚实盘比查询
# 交易法门-工具-资讯汇总
增加-交易法门-工具-资讯汇总-研报查询
增加-交易法门-工具-资讯汇总-交易日历
# 交易法门-工具-资金分析
增加-交易法门-工具-资金分析-资金流向

0.3.37
更新说明文档

0.3.38
修改-交易法门-工具-资金分析-资金流向函数的字段和说明文档

0.3.39
金十数据中心-经济指标-央行利率-主要央行利率
美联储利率决议报告
欧洲央行决议报告
新西兰联储决议报告
中国央行决议报告
瑞士央行决议报告
英国央行决议报告
澳洲联储决议报告
日本央行决议报告
俄罗斯央行决议报告
印度央行决议报告
巴西央行决议报告
macro_euro_gdp_yoy #  金十数据中心-经济指标-欧元区-国民经济运行状况-经济状况-欧元区季度GDP年率报告
macro_euro_cpi_mom #  金十数据中心-经济指标-欧元区-国民经济运行状况-物价水平-欧元区CPI月率报告
macro_euro_cpi_yoy #  金十数据中心-经济指标-欧元区-国民经济运行状况-物价水平-欧元区CPI年率报告
macro_euro_ppi_mom #  金十数据中心-经济指标-欧元区-国民经济运行状况-物价水平-欧元区PPI月率报告
macro_euro_retail_sales_mom #  金十数据中心-经济指标-欧元区-国民经济运行状况-物价水平-欧元区零售销售月率报告
macro_euro_employment_change_qoq #  金十数据中心-经济指标-欧元区-国民经济运行状况-劳动力市场-欧元区季调后就业人数季率报告
macro_euro_unemployment_rate_mom #  金十数据中心-经济指标-欧元区-国民经济运行状况-劳动力市场-欧元区失业率报告
macro_euro_trade_balance #  金十数据中心-经济指标-欧元区-贸易状况-欧元区未季调贸易帐报告
macro_euro_current_account_mom #  金十数据中心-经济指标-欧元区-贸易状况-欧元区经常帐报告
macro_euro_industrial_production_mom #  金十数据中心-经济指标-欧元区-产业指标-欧元区工业产出月率报告
macro_euro_manufacturing_pmi #  金十数据中心-经济指标-欧元区-产业指标-欧元区制造业PMI初值报告
macro_euro_services_pmi #  金十数据中心-经济指标-欧元区-产业指标-欧元区服务业PMI终值报告
macro_euro_zew_economic_sentiment #  金十数据中心-经济指标-欧元区-领先指标-欧元区ZEW经济景气指数报告
macro_euro_sentix_investor_confidence #  金十数据中心-经济指标-欧元区-领先指标-欧元区Sentix投资者信心指数报告

0.3.40
修复-欧洲央行决议报告

0.3.41
增加-东方财富网-经济数据-银行间拆借利率

0.3.42
# 中国
macro_china_gdp_yearly  # 金十数据中心-经济指标-中国-国民经济运行状况-经济状况-中国GDP年率报告
macro_china_cpi_yearly  # 金十数据中心-经济指标-中国-国民经济运行状况-物价水平-中国CPI年率报告
macro_china_cpi_monthly  # 金十数据中心-经济指标-中国-国民经济运行状况-物价水平-中国CPI月率报告
macro_china_ppi_yearly  # 金十数据中心-经济指标-中国-国民经济运行状况-物价水平-中国PPI年率报告
macro_china_exports_yoy  # 金十数据中心-经济指标-中国-贸易状况-以美元计算出口年率报告
macro_china_imports_yoy  # 金十数据中心-经济指标-中国-贸易状况-以美元计算进口年率
macro_china_trade_balance  # 金十数据中心-经济指标-中国-贸易状况-以美元计算贸易帐(亿美元)
macro_china_industrial_production_yoy  # 金十数据中心-经济指标-中国-产业指标-规模以上工业增加值年率
macro_china_pmi_yearly  # 金十数据中心-经济指标-中国-产业指标-官方制造业PMI
macro_china_cx_pmi_yearly  # 金十数据中心-经济指标-中国-产业指标-财新制造业PMI终值
macro_china_cx_services_pmi_yearly  # 金十数据中心-经济指标-中国-产业指标-财新服务业PMI
macro_china_non_man_pmi  # 金十数据中心-经济指标-中国-产业指标-中国官方非制造业PMI
macro_china_fx_reserves_yearly  # 金十数据中心-经济指标-中国-金融指标-外汇储备(亿美元)
macro_china_m2_yearly  # 金十数据中心-经济指标-中国-金融指标-M2货币供应年率
macro_china_shibor_all  # 金十数据中心-经济指标-中国-金融指标-上海银行业同业拆借报告
macro_china_hk_market_info  # 金十数据中心-经济指标-中国-金融指标-人民币香港银行同业拆息
macro_china_daily_energy  # 金十数据中心-经济指标-中国-其他-中国日度沿海六大电库存数据
macro_china_rmb  # 金十数据中心-经济指标-中国-其他-中国人民币汇率中间价报告
macro_china_market_margin_sz  # 金十数据中心-经济指标-中国-其他-深圳融资融券报告
macro_china_market_margin_sh  # 金十数据中心-经济指标-中国-其他-上海融资融券报告
macro_china_au_report  # 金十数据中心-经济指标-中国-其他-上海黄金交易所报告
macro_china_ctci  # 发改委-中国电煤价格指数-全国综合电煤价格指数
macro_china_ctci_detail  # 发改委-中国电煤价格指数-各价区电煤价格指数
macro_china_ctci_detail_hist  # 发改委-中国电煤价格指数-历史电煤价格指数
# 美国
macro_usa_gdp_monthly  # 金十数据中心-经济指标-美国-经济状况-美国GDP
macro_usa_cpi_monthly  # 金十数据中心-经济指标-美国-物价水平-美国CPI月率报告
macro_usa_core_cpi_monthly  # 金十数据中心-经济指标-美国-物价水平-美国核心CPI月率报告
macro_usa_personal_spending  # 金十数据中心-经济指标-美国-物价水平-美国个人支出月率报告
macro_usa_retail_sales  # 金十数据中心-经济指标-美国-物价水平-美国零售销售月率报告
macro_usa_import_price  # 金十数据中心-经济指标-美国-物价水平-美国进口物价指数报告
macro_usa_export_price  # 金十数据中心-经济指标-美国-物价水平-美国出口价格指数报告
macro_usa_lmci  # 金十数据中心-经济指标-美国-劳动力市场-LMCI
macro_usa_unemployment_rate  # 金十数据中心-经济指标-美国-劳动力市场-失业率-美国失业率报告
macro_usa_job_cuts  # 金十数据中心-经济指标-美国-劳动力市场-失业率-美国挑战者企业裁员人数报告
macro_usa_non_farm  # 金十数据中心-经济指标-美国-劳动力市场-就业人口-美国非农就业人数报告
macro_usa_adp_employment  # 金十数据中心-经济指标-美国-劳动力市场-就业人口-美国ADP就业人数报告
macro_usa_core_pce_price  # 金十数据中心-经济指标-美国-劳动力市场-消费者收入与支出-美国核心PCE物价指数年率报告
macro_usa_real_consumer_spending  # 金十数据中心-经济指标-美国-劳动力市场-消费者收入与支出-美国实际个人消费支出季率初值报告
macro_usa_trade_balance  # 金十数据中心-经济指标-美国-贸易状况-美国贸易帐报告
macro_usa_current_account  # 金十数据中心-经济指标-美国-贸易状况-美国经常帐报告
macro_usa_rig_count  # 金十数据中心-经济指标-美国-产业指标-制造业-贝克休斯钻井报告
# 金十数据中心-经济指标-美国-产业指标-制造业-美国个人支出月率报告
macro_usa_ppi  # 金十数据中心-经济指标-美国-产业指标-制造业-美国生产者物价指数(PPI)报告
macro_usa_core_ppi  # 金十数据中心-经济指标-美国-产业指标-制造业-美国核心生产者物价指数(PPI)报告
macro_usa_api_crude_stock  # 金十数据中心-经济指标-美国-产业指标-制造业-美国API原油库存报告
macro_usa_pmi  # 金十数据中心-经济指标-美国-产业指标-制造业-美国Markit制造业PMI初值报告
macro_usa_ism_pmi  # 金十数据中心-经济指标-美国-产业指标-制造业-美国ISM制造业PMI报告
macro_usa_nahb_house_market_index  # 金十数据中心-经济指标-美国-产业指标-房地产-美国NAHB房产市场指数报告
macro_usa_house_starts  # 金十数据中心-经济指标-美国-产业指标-房地产-美国新屋开工总数年化报告
macro_usa_new_home_sales  # 金十数据中心-经济指标-美国-产业指标-房地产-美国新屋销售总数年化报告
macro_usa_building_permits  # 金十数据中心-经济指标-美国-产业指标-房地产-美国营建许可总数报告
macro_usa_exist_home_sales  # 金十数据中心-经济指标-美国-产业指标-房地产-美国成屋销售总数年化报告
macro_usa_house_price_index  # 金十数据中心-经济指标-美国-产业指标-房地产-美国FHFA房价指数月率报告
macro_usa_spcs20 # 金十数据中心-经济指标-美国-产业指标-房地产-美国S&P/CS20座大城市房价指数年率报告
macro_usa_pending_home_sales  # 金十数据中心-经济指标-美国-产业指标-房地产-美国成屋签约销售指数月率报告
macro_usa_cb_consumer_confidence  # 金十数据中心-经济指标-美国-领先指标-美国谘商会消费者信心指数报告
macro_usa_nfib_small_business # 金十数据中心-经济指标-美国-领先指标-美国NFIB小型企业信心指数报告
macro_usa_michigan_consumer_sentiment # 金十数据中心-经济指标-美国-领先指标-美国密歇根大学消费者信心指数初值报告
macro_usa_eia_crude_rate  # 金十数据中心-经济指标-美国-其他-美国EIA原油库存报告
macro_usa_initial_jobless  # 金十数据中心-经济指标-美国-其他-美国初请失业金人数报告
macro_usa_crude_inner  # 金十数据中心-经济指标-美国-其他-美国原油产量报告

0.3.43
增加-交易法门-数据-黑色系-焦煤

0.3.44
更新宏观数据
macro_cons_gold_volume  # 全球最大黄金ETF—SPDR Gold Trust持仓报告
macro_cons_gold_change  # 全球最大黄金ETF—SPDR Gold Trust持仓报告
macro_cons_gold_amount  # 全球最大黄金ETF—SPDR Gold Trust持仓报告
macro_cons_silver_volume  # 全球最大白银ETF--iShares Silver Trust持仓报告
macro_cons_silver_change  # 全球最大白银ETF--iShares Silver Trust持仓报告
macro_cons_silver_amount  # 全球最大白银ETF--iShares Silver Trust持仓报告
macro_cons_opec_month  # 欧佩克报告-月度

0.3.45
增加中国证券投资基金业协会-信息公示
# 中国证券投资基金业协会-信息公示-会员信息
amac_member_info # 中国证券投资基金业协会-信息公示-会员信息-会员机构综合查询
# 中国证券投资基金业协会-信息公示-从业人员信息
amac_person_org_list # 中国证券投资基金业协会-信息公示-从业人员信息-基金从业人员资格注册信息
# 中国证券投资基金业协会-信息公示-私募基金管理人公示
amac_manager_info # 中国证券投资基金业协会-信息公示-私募基金管理人公示-私募基金管理人综合查询
amac_manager_classify_info # 中国证券投资基金业协会-信息公示-私募基金管理人公示-私募基金管理人分类公示
amac_member_sub_info # 中国证券投资基金业协会-信息公示-私募基金管理人公示-证券公司私募基金子公司管理人信息公示
# 中国证券投资基金业协会-信息公示-基金产品
amac_fund_info # 中国证券投资基金业协会-信息公示-基金产品-私募基金管理人基金产品
amac_securities_info # 中国证券投资基金业协会-信息公示-基金产品-证券公司集合资管产品公示
amac_aoin_info # 中国证券投资基金业协会-信息公示-基金产品-证券公司直投基金
amac_fund_sub_info # 中国证券投资基金业协会-信息公示-基金产品公示-证券公司私募投资基金
amac_fund_account_info # 中国证券投资基金业协会-信息公示-基金产品公示-基金公司及子公司集合资管产品公示
amac_fund_abs # 中国证券投资基金业协会-信息公示-基金产品公示-资产支持专项计划
amac_futures_info # 中国证券投资基金业协会-信息公示-基金产品公示-期货公司集合资管产品公示
# 中国证券投资基金业协会-信息公示-诚信信息
amac_manager_cancelled_info # 中国证券投资基金业协会-信息公示-诚信信息-已注销私募基金管理人名单

0.3.46
更新-商品期权-菜籽粕期权接口
修复 get_sector_futures 字段名问题

0.3.47
增加-商品期权-郑州商品交易所-期权-历史数据

0.3.48
修复 macro_cons_opec_month 接口数据更新问题

0.3.49
新增-交易法门-工具-仓单分析-虚实盘比日报接口

0.3.50
更新-说明文档

0.3.51
修复 macro_cons_opec_month 接口数据更新问题, 统一数据接口跟网页端统一
修复-百度指数-由用户输入cookie来访问数据及说明文档

0.3.52
新增-英为财情-外汇-货币对历史数据

0.3.53
修复-macro_usa_rig_count-接口返回数据
修复-rate_interbank-文档注释

0.3.54
新增-事件接口
新增-事件接口新型冠状病毒-网易
新增-事件接口新型冠状病毒-丁香园

0.3.55
更新-事件接口新型冠状病毒

0.3.56
更新-事件接口新型冠状病毒-全国疫情趋势图

0.3.57
更新-事件接口新型冠状病毒-分省地区
一些细节修复

0.3.58
新增-财富排行榜(英文版)

0.3.59
新增-currency_name_code-接口

0.3.60
修复-财富排行榜(英文版)-索引乱序问题

0.3.61
修复-事件接口新型冠状病毒-hospital-接口

0.3.62
修复-20200203交易日问题

0.3.63
修复-事件接口新型冠状病毒-网易接口

0.3.64
修复-事件接口新型冠状病毒-丁香园接口

0.3.65
修复-calendar.json 问题, 感谢 fxt0706

0.3.66
修复-epu_index-加载问题

0.3.67
修复-option_commodity-json数据加载问题

0.3.68
更名函数 movie_board -> box_office_spot

0.3.69
新增-epidemic_baidu
百度-新型冠状病毒肺炎-疫情实时大数据报告

0.3.70
修复-epidemic_dxy-字段问题

0.3.71
修复-epidemic_dxy-具体省份字段问题

0.3.72
新增-百度迁徙地图接口

0.3.73
修复文字表述

0.3.74
修复-epidemic_163-数据更新问题

0.3.75
修复-epidemic_dxy-图片显示问题

0.3.76
新增-stock_zh_index_daily_tx-补充新浪指数的数据缺失问题

0.3.77
修复-epidemic_163-数据更新问题

0.3.78
新增-bond_china_yield-中国债券信息网-国债及其他债券收益率曲线

0.3.79
修改-bond_china_yield-参数

0.3.80
新增-基金数据接口

0.3.81
新增-基金数据接口-净值

0.3.82
新增-小区查询
新增-相同行程查询

0.3.83
新增-交易法门-工具-套利分析-FullCarry
修改-交易法门-工具-期限分析-基差分析

0.3.84
新增-货币对-投机情绪报告

0.3.85
修复-epidemic_area_detail-增加下载进度提示

0.3.86
修复-epidemic_dxy-完善图片获取

0.3.87
新增-债券质押式回购成交明细数据
新增-细化到地市的疫情历史数据20200123至今

0.3.88
新增-交易法门-工具-持仓分析-持仓季节性
修复-epidemic_163

0.3.89
新增-epidemic_163-数据说明接口

0.3.90
修复-epidemic_dxy

0.3.91
修复-get_receipt-MA数值问题

0.3.92
新增-奇货可查接口测试

0.3.93
新增-奇货可查接口测试-代码补全

0.3.94
修复-epidemic_dxy

0.3.95
新增-债券-沪深债券
新增-债券-沪深可转债

0.3.96
修复-baidu_search_index-异常

0.3.97
新增-特许经营数据

0.3.98
修复-get_receipt-MA数值问题条件判断

0.3.99
修复-air_hebei-代码格式

0.4.1
修复-pandas-版本降级

0.4.2
修复-epidemic_baidu

0.4.3
新增-中国慈善

0.4.4
新增-epidemic_history-疫情所有历史数据

0.4.5
完善-慈善中国-类型注解

0.4.6
修复-charity_china_report

0.4.7
新增-测试接口

0.4.8
修复-epidemic_hist_all
修复-epidemic_hist_city
修复-epidemic_hist_province

0.4.9
新增-option_sina_cffex_hs300_list
新增-option_sina_cffex_hs300_spot
新增-option_sina_cffex_hs300_daily
新增-option_sina_sse_list
新增-option_sina_sse_expire_day
新增-option_sina_sse_codes
新增-option_sina_sse_spot_price
新增-option_sina_sse_underlying_spot_price
新增-option_sina_sse_greeks
新增-option_sina_sse_minute
新增-option_sina_sse_daily

0.4.10
修复-金十数据websocket接口

0.4.11
新增-交易法门-工具-资金分析-资金流向
新增-交易法门-工具-资金分析-沉淀资金
新增-交易法门-工具-资金分析-资金季节性
新增-交易法门-工具-资金分析-成交排名

0.4.12
新增-微博舆情报告

0.4.13
新增-Python3.8.1支持

0.4.14
修复-get_receipt-CZCE问题

0.4.15
修复-hf_subscribe_exchange_symbol-在Linux Python 3.8.1 报错问题

0.4.16
修复-get_js_dc_current

0.4.17
新增-知识图谱

0.4.18: fix: use tqdm replace print hints

0.4.19: fix: use tqdm replace print hints in energy_carbon.py and charity_china.py

0.4.20: add: jyfm_tools_position_structure and jyfm_tools_symbol_handbook

0.4.21: fix: macro_cons_opec_month print hints

0.4.22: fix: add tqdm desc

0.4.23: fix: add tqdm stock_zh_a_spot desc

0.4.24: fix: add get_us_stock_name to get the u.s. stock name

0.4.25: fix: upload setup.py file and set automate release and deploy

0.4.26: fix: bond_spot_quote and docs

0.4.27: test: automate test

0.4.28: test: automate test

0.4.29: feats: add currency interface

0.4.30: fix: roll_yield.py/get_roll_yield: CUefp error

0.4.31: format: format currency.py

0.4.32: fix: china_bond.py

0.4.33: add: jyfm_tools_futures_arbitrage_matrix for jyfm futures

0.4.34: fix: get_czce_rank_table history-20171228 format

0.4.35: fix: get_czce_rank_table history-20071228 format

0.4.36: fix: macro_cons_opec_month

0.4.37: add: get_ine_daily to fetch SC and NR data

0.4.38: add: futures_sgx_daily to fetch futures data from sgx

0.4.39: refactor: sos.py/covid_19_163 interface

0.4.40: refactor: sos.py interface

0.4.41: fix: cot.py get_rank_sum_daily interface

0.4.42: add: wdbank.py test

0.4.43: add: wdbank.py dependencies

0.4.44: add: tool github

0.4.45: add: fund_public file and docs

0.4.46: add: macro_china_lpr

0.4.47: add: stock_em_analyst

0.4.48: add: stock_em_comment

0.4.49: add: stock_em_hsgt

0.4.50: fix: stock_em_sy_yq_list

0.4.51: add: stock_tfp_em

0.4.52: fix: covid.py

0.4.53: fix: hf_futures_sina.py

0.4.54: add: futures_foreign

0.4.55: fix: macro_constitute.py

0.4.56: add: index_vix

0.4.57: fix: covid-19; desc: delete pic show

0.4.58: add: qhkc api

0.4.59: add: jyfm_tools

0.4.60: fix: covid_19_dxy and cot.py

0.4.61: fix: cot.py dict's keys use strip

0.4.62: fix: add PG into cons.py map_dict

0.4.63: add: energy_oil to add energy_oil_hist and energy_oil_detail

0.4.64: add: futures_em_spot_stock

0.4.65: add: futures_global_commodity_name_url_map

0.4.66: fix: fund_em.py timezone transfer

0.4.67: fix: covid covid_19_area_detail

0.4.68: fix: marco_usa

0.4.69: add: futures_cfmmc

0.4.70: add: covid_19 CSSE 数据接口

0.4.71: add: argus

0.4.72: add: stock_zh_tick_163

0.4.73: add: stock_zh_tick_tx_js

0.4.74: fix: stock_zh_tick_163 return tips

0.4.75: fix: nh_index

0.4.76: add: fred_md

0.4.77: fix: get_dce_option_daily

0.4.78: add: internal_flow_history

0.4.79: add: stock_em_dxsyl

0.4.80: fix: covid and docs

0.4.81: add: stock_em_yjyg and stock_em_yysj

0.4.82: fix: futures_xgx_index

0.4.83: fix: fortune_500.py

0.4.84: fix: a and kcb stock return format

0.4.85: fix: a and kcb stock field

0.4.86: add: hf_sp_500

0.4.87: fix: jinshi data update

0.4.88: fix: macro_china

0.4.89: fix: macro_other

0.4.90: fix: stock_zh_a and stock_zh_kcb return adjusted stock price

0.4.91: add: futures_inventory_em

0.4.92: fix: adjust hk_stock_sina, us_stock_sina

0.4.93: fix: air_quality

0.4.94: fix: air_quality path

0.4.95: add: js file

0.4.96: fix: format air interface

0.4.97: fix: interbank_rate_em.py add need_page parameter to control update content

0.4.98: add: mplfinance package

0.4.99: add: fund_em

0.5.1: fix: add PG to futures list

0.5.2: fix: air_zhenqi.py rename air_city_dict to air_city_list

0.5.3: add: add two fields into covid_163

0.5.4: fix: fix request_fun timeout and error type

0.5.5: fix: fund_em_graded_fund_daily return fields

0.5.6: fix: us_stock_sina.py rename columns

0.5.7: fix: import akshare only load functions

0.5.8: add: macro_china_money_supply

0.5.9: add: macro_china_new_house_price, macro_china_enterprise_boom_index, macro_china_national_tax_receipts

0.5.10: fix: zh_stock_ah_tx

0.5.11: fix: fund_em return fields

0.5.12: fix: add date to fund_em daily function

0.5.13: add: stock_fund

0.5.14: add: stock_market_fund_flow, stock_sector_fund_flow, stock_individual_fund_flow_rank

0.5.15: fix: baidu_index

0.5.16: add: fund_em_value_estimation

0.5.17: fix: delete macro_euro zero value

0.5.18: add: stock_financial_abstract, stock_financial_analysis_indicator

0.5.19: add: stock_add_stock, stock_ipo_info, stock_history_dividend_detail, stock_history_dividend

0.5.20: add: stock_restricted_shares, stock_circulate_stock_holder

0.5.21: add: futures_dce_position_rank

0.5.22: fix: fix futures_dce_position_rank return format

0.5.23: add: stock_sector_spot, stock_sector_detail

0.5.24: fix: futures_dce_position_rank

0.5.25: fix: futures_dce_position_rank return fields

0.5.26: add: stock_info

0.5.27: add: stock_em_hsgt_hold_stock

0.5.28: add: stock_fund_stock_holder, stock_main_stock_holder

0.5.29: fix: stock_em_sy

0.5.30: fix: air_zhenqi.py

0.5.31: fix: add futures_dce_position_rank_other to fix futures_dce_position_rank at 20160104

0.5.32: fix: futures_dce_position_rank_other return format

0.5.33: add: zh_bond_cov_sina and set pandas version

0.5.34: fix: set pandas version > 0.25

0.5.35: add: bond_cov_comparison and bond_zh_cov

0.5.36: fix: stock_info_sz_name_code return code format

0.5.37: add: stock_hold

0.5.38: fix: futures_dce_position_rank_other exchange symbol and variety

0.5.39: add: stock_recommend

0.5.40: fix: stock_recommend output format

0.5.41: fix: deprecated requests-html module

0.5.42: fix: reformat investing interface

0.5.43: fix: qhck interface

0.5.44: add: LME holding and stock report

0.5.45: fix: transform the data type of stock_zh_a_spot output

0.5.46: add: CFTC holding and stock

0.5.47: fix: fix index_investing_global interface

0.5.48: fix: fix stock_info_a_code_name interface

0.5.49: fix: fix stock_zh_a_daily interface

0.5.50: fix: fix get_roll_yield_bar interface

0.5.51: add: stock_summary

0.5.52: fix: fix get_roll_yield_bar interface

0.5.53: add: add watch_jinshi_quotes interface

0.5.54: add: add stock_js_price interface

0.5.55: add: add futures_czce_warehouse_receipt interface

0.5.56: add: add futures_dce_warehouse_receipt, futures_shfe_warehouse_receipt interface

0.5.57: fix: fix macro data interface

0.5.58: add: add stock_em_qsjy interface

0.5.59: fix: fix fund interface

0.5.60: fix: add index_bloomberg_billionaires interface

0.5.61: fix: fix futures_rule interface

0.5.62: add: add stock_a_pe, stock_a_pb interface

0.5.63: add: add stock_a_lg_indicator interface

0.5.64: add: add stock_a_high_low_statistics interface

0.5.65: add: add stock_a_below_net_asset_statistics interface

0.5.66: fix: fix stock_zh_a_daily default return unadjusted data

0.5.67: fix: fix R and MATLAB compatibility issues

0.5.68: add: add option_commodity_sina interface

0.5.69: fix: fix option_commodity_sina interface

0.5.70: merge: merge #4048

0.5.71: add: add tool_trade_date_hist interface

0.5.72: add: add fund_etf_category_sina, fund_etf_hist_sina interface

0.5.73: add: add stock_report_disclosure interface

0.5.74: add: add stock_zh_a_minute interface

0.5.75: add: add futures_zh_minute_sina interface

0.5.76: add: add option_sina_finance_minute interface

0.5.77: fix: fix currency_hist interface return data format

0.5.78: add: add hold field in futures_zh_minute_sina interface

0.5.79: add: add stock_report_fund_hold interface

0.5.80: fix: fix PG to futures cons file

0.5.81: add: add stock_zh_index_hist_csindex interface

0.5.82: fix: fix LU to futures cons file

0.5.83: fix: fix qhkc broker_positions_process interface

0.5.84: fix: fix tool_trade_date_hist_sina interface and update calendar.json

0.5.85: add: add index_stock_hist interface

0.5.86: fix: fix code format

0.5.87: fix: fix cot interface

0.5.88: fix: fix stock_em_account interface

0.5.89: add: add macro_china_new_financial_credit interface

0.5.90: add: add stock_sina_lhb interface

0.5.91: fix: fix covid for python3.8

0.5.92: fix: fix futures_daily_bar interface

0.5.93: add: add macro_china_fx_gold interface

0.5.94: add: add stock_zh_index_daily_em, bond_cov_jsl interface

0.5.95: fix: fix get_dce_option_daily interface

0.5.96: add: add stock_em_hsgt_hist interface

0.5.97: fix: fix remove mplfinance package in requirements.txt

0.5.98: add: add stock_hk_eniu_indicator interface

0.5.99: fix: fix stock_zh_ah_daily interface

0.6.1: fix: fix stock_zh_ah_daily interface set default value

0.6.2: fix: fix stock_zh_a_minute interface and add adjust parameter

0.6.3: fix: fix stock_zh_a_minute interface

0.6.4: add: add macro_china interface

0.6.5: add: add macro_china_wbck interface

0.6.6: fix: fix macro_china_wbck interface

0.6.7: add: add index_stock_cons_sina interface

0.6.8: fix: fix option_commodity interface

0.6.9: fix: fix stock_em_gpzy_pledge_ratio interface

0.6.10: add: add macro_china_hb, macro_china_gksccz, macro_china_bond_public interface

0.6.11: fix: fix python version should be 3.7 later

0.6.12: fix: fix stock_em_gpzy_distribute_statistics_company interface

0.6.13: add: add stock_us_fundamental interface

0.6.14: fix: fix stock_us_fundamental interface

0.6.15: fix: fix macro_china_market_margin_sh interface

0.6.16: fix: fix stock_us_daily time period and adjust for specific stock

0.6.17: fix: fix stock_js_weibo_report interface

0.6.18: fix: fix get_shfe_option_daily interface column name

0.6.19: fix: fix stock_hk_daily interface to process non-dividend stock

0.6.20: fix: fix covid_baidu interface

0.6.21: fix: fix futures_hf_spot interface

0.6.22: fix: fix stock_zh_index_daily_tx interface

0.6.23: fix: fix currency_hist interface

0.6.24: fix: fix stock_zh_kcb_spot interface

0.6.25: add: add stock_register_kcb interface

0.6.26: add: add stock_em_sy_list interface

0.6.27: fix: fix stock_sector_detail interface

0.6.28: add: add stock_register_cyb interface

0.6.29: fix: fix stock_zh_a_daily interface

0.6.30: add: add energy interface

0.6.31: fix: fix energy interface

0.6.32: fix: fix docs interface

0.6.33: fix: fix get_roll_yield_bar interface

0.6.34: fix: fix currency_investing and futures_inventory_em interface and add index_stock_cons_csindex interface

0.6.35: fix: fix get_futures_daily interface

0.6.36: fix: fix stock_info_a_code_name interface

0.6.37: fix: fix stock_sector_detail interface

0.6.38: fix: fix get_futures_daily interface

0.6.39: add: add stock_em_xgsglb interface

0.6.40: add: add stock_zh_a_new interface

0.6.41: fix: fix get_ine_daily interface

0.6.42: add: add bond_futures_deliverable_coupons interface

0.6.43: fix: fix bond_futures_deliverable_coupons interface

0.6.44: add: add futures_comex_inventory interface

0.6.45: add: add macro_china_xfzxx interface

0.6.46: add: add macro_china_reserve_requirement_ratio interface

0.6.47: fix: fix franchise_china interface

0.6.48: fix: fix get_rank_sum interface

0.6.49: fix: fix get_dce_rank_table interface

0.6.50: add: add macro_china_hgjck, macro_china_consumer_goods_retail interface

0.6.51: fix: fix macro_china_hgjck interface

0.6.52: add: add macro_china_society_electricity interface

0.6.53: add: add macro_china_society_traffic_volume interface

0.6.54: add: add macro_china_postal_telecommunicational interface

0.6.55: add: add macro_china_international_tourism_fx interface

0.6.56: add: add macro_china_swap_rate interface

0.6.57: fix: fix stock_sina_lhb_detail_daily interface

0.6.58: add: add bond_china_close_return interface

0.6.59: add: add macro_china_passenger_load_factor interface

0.6.60: fix: fix stock_sina_lhb_ggtj interface

0.6.61: fix: fix option_czce_hist interface

0.6.62: fix: fix sunrise_daily interface

0.6.63: fix: fix get_roll_yield_bar interface

0.6.64: add: add macro_china_insurance interface

0.6.65: add: add macro_china_supply_of_money interface

0.6.66: add: add support for python 3.9.0

0.6.67: add: add macro_china_foreign_exchange_gold interface

0.6.68: add: add macro_china_retail_price_index interface

0.6.69: fix: fix box_office_spot interface

0.6.70: fix: fix bond_investing_global interface

0.6.71: fix: fix nh_return_index interface

0.6.72: fix: fix get_receipt interface

0.6.73: add: add news_cctv interface

0.6.74: fix: fix macro and acm interface

0.6.75: add: add movie_boxoffice interface

0.6.76: fix: fix remove execjs dependence

0.6.77: add: add macro_china_real_estate interface

0.6.78: fix: fix movie_boxoffice interface

0.6.79: fix: split movie_boxoffice to single interface

0.6.80: fix: movie_boxoffice interface

0.6.81: fix: fix stock_report_fund_hold interface

0.6.82: fix: fix stock_em_comment interface

0.6.83: add: add crypto_hist and crypto_name_map interface

0.6.84: fix: fix crypto_hist interface

0.6.85: fix: fix stock_a_pb and stock_a_pe interface

0.6.86: fix: fix stock_zh_a_minute interface

0.6.87: fix: remove email interface

0.6.88: fix: fix get_dce_rank_table interface

0.6.89: fix: fix get_dce_rank_table interface

0.6.90: add: add fund_em_rank interface

0.6.91: fix: fix get_futures_daily interface

0.6.92: add: add repo_rate_hist interface

0.6.93: fix: fix stock_report_fund_hold interface

0.6.94: fix: fix docs interface

0.6.95: fix: fix macro_china_market_margin_sh interface

0.6.96: fix: fix stock_zh_a_daily interface

0.6.97: add: add stock_em_hsgt_board_rank interface

0.6.98: fix: fix fortune_rank interface

0.6.99: add: add forbes_rank interface

0.7.1: fix: fix futures_dce_position_rank interface

0.7.2: add: add xincaifu_rank interface

0.7.3: add: add hurun_rank interface

0.7.4: fix: fix hurun_rank interface

0.7.5: add: add currency_pair_map interface

0.7.6: fix: fix stock_em_jgdy_detail interface

0.7.7: fix: fix stock_info interface

0.7.8: fix: fix bond_cov_jsl interface

0.7.9: fix: fix stock_em_jgdy_detail interface

0.7.10: fix: fix match_main_contract interface

0.7.11: fix: fix stock_em_analyst_rank and stock_em_analyst_detail interface

0.7.12: add: add stock_zh_a_cdr_daily interface

0.7.13: fix: fix stock_zh_a_cdr_daily and stock_zh_a_daily interface

0.7.14: fix: fix get_receipt interface

0.7.15: add: add futures_contract_detail interface

0.7.16: fix: fix futures_zh_spot interface

0.7.17: del: del zdzk interface

0.7.18: fix: fix stock_zh_a_daily interface

0.7.19: fix: fix stock_zh_a_daily interface

0.7.20: fix: fix stock_em_jgdy_tj interface

0.7.21: fix: fix zh_stock_kcb_report interface

0.7.22: fix: fix zh_stock_kcb_report interface

0.7.23: fix: fix fund_em_open_fund_info interface

0.7.24: fix: fix futures_spot_price_daily interface

0.7.25: add: add option_current_em interface

0.7.26: fix: fix option_current_em interface

0.7.27: add: add js_news interface

0.7.28: fix: fix js_news interface

0.7.29: fix: fix macro_china_market_margin_sh interface

0.7.30: add: add nlp_answer interface

0.7.31: fix: fix index_sw interface

0.7.32: add: add index_cni interface

0.7.33: add: add more index_cni interface

0.7.34: add: add stock_dzjy_sctj interface

0.7.35: add: add stock_dzjy_mrmx interface

0.7.36: add: add stock_dzjy_mrtj interface

0.7.37: add: add stock_dzjy_hygtj interface

0.7.38: add: add stock_dzjy_hyyybtj interface

0.7.39: add: add stock_dzjy_yybph interface

0.7.40: fix: fix js_news interface

0.7.41: add: add stock_em_yzxdr interface

0.7.42: fix: fix fund_em_etf_fund_daily interface

0.7.43: fix: fix match_main_contract interface

0.7.44: fix: fix stock_hk_daily interface

0.7.45: fix: fix stock_em_yzxdr interface

0.7.46: fix: fix option_czce_hist interface

0.7.47: fix: fix bond_zh_cov interface

0.7.48: fix: fix futures_dce_position_rank interface

0.7.49: fix: fix stock_us_zh_spot interface

0.7.50: fix: fix stock_em_hsgt_stock_statistics interface

0.7.51: fix: fix stock_us_daily interface

0.7.52: fix: fix stock_sector_fund_flow_rank interface

0.7.53: fix: fix stock_em_yzxdr interface

0.7.54: add: add stock_a_code_to_symbol interface

0.7.55: add: add stock_news_em interface

0.7.56: fix: fix stock_news_em interface

0.7.57: fix: fix xlrd support

0.7.58: fix: fix stock_zh_a_tick_tx_js support

0.7.59: fix: fix read_excel support

0.7.60: fix: fix fund_em_open_fund_daily interface

0.7.61: fix: fix calendar.json interface

0.7.62: fix: fix QQ group interface

0.7.63: add: add bond_summary_sse interface

0.7.64: fix: fix macro_cons_gold_volume interface

0.7.65: fix: fix fund_em_value_estimation interface

0.7.66: fix: fix fund_em_value_estimation interface

0.7.67: fix: fix get_dce_daily interface

0.7.68: fix: fix stock_zh_index_spot interface

0.7.69: fix: fix covid_19 interface

0.7.70: fix: fix get_dce_rank_table interface

0.7.71: fix: fix stock_us_daily interface

0.7.72: fix: fix get_ine_daily interface

0.7.73: add: add macro_china_money_supply interface

0.7.74: fix: fix stock_zh_a_minute interface

0.7.75: add: add bond_cash_summary_sse interface

0.7.76: fix: fix get_rank_sum_daily interface

0.7.77: fix: fix get_inventory_data interface

0.7.78: fix: fix futures_inventory_99 interface

0.7.79: fix: fix stock_a_below_net_asset_statistics interface

0.7.80: add: add bank_rank_banker interface

0.7.81: add: add macro_china_stock_market_cap interface

0.7.82: fix: fix macro_china_stock_market_cap interface

0.7.83: fix: fix stock_news_em interface

0.7.84: fix: fix covid_19_dxy interface

0.7.85: add: add futures_spot_price_previous interface

0.7.86: add: add fund_em_hk_rank interface

0.7.87: add: add fund_em_lcx_rank interface

0.7.88: fix: fix bond_repo_zh_tick interface

0.7.89: fix: fix stock_hk_daily interface

0.7.90: fix: fix stock_em_gpzy_pledge_ratio interface

0.7.91: fix: fix stock_report_disclosure interface

0.7.92: add: add fund_em_hk_fund_hist interface

0.7.93: add: add fund_portfolio_hold_em interface

0.7.94: fix: fix futures_spot_price_previous interface

0.7.95: add: add covid_19_trace interface

0.7.96: fix: fix bond_spot_quote interface

0.7.97: fix: fix bond_spot_deal interface

0.7.98: fix: fix stock_report_fund_hold interface

0.7.99: fix: fix stock_zh_a_daily interface

0.8.1: add: add stock_report_fund_hold_detail interface

0.8.2: fix: fix option_finance_board interface

0.8.3: fix: fix stock_zh_a_daily interface

0.8.4: fix: fix option interface

0.8.5: fix: fix bond_investing_global interface

0.8.6: add: add macro_china_shrzgm interface

0.8.7: add: add stock_zh_a_tick_163_now interface

0.8.8: fix: fix add PK to CZCE

0.8.9: add: add futures delivery and spot interface

0.8.10: fix: fix fund_portfolio_hold_em interface

0.8.11: add: add futures_to_spot_dce interface

0.8.12: add: add futures_delivery_shfe interface

0.8.13: fix: fix stock_us_daily interface

0.8.14: fix: fix fund_em_open_fund_rank interface

0.8.15: fix: fix chinese_to_english interface

0.8.16: fix: fix stock_a_pe interface

0.8.17: add: add stock_financial_report_sina interface

0.8.18: fix: fix futures_spot_price_daily interface

0.8.19: add: add stock_margin_sse interface

0.8.20: add: add stock_margin_detail_sse interface

0.8.21: fix: fix stock_szse_summary interface

0.8.22: fix: fix stock_zh_a_daily interface

0.8.23: fix: fix covid_19_dxy interface

0.8.24: fix: fix fund_em_value_estimation interface

0.8.25: fix: fix stock_zh_index_daily_tx interface

0.8.26: fix: fix stock_hk_daily interface

0.8.27: fix: fix get_dce_rank_table interface

0.8.28: fix: fix stock_em_analyst_rank interface

0.8.29: add: add fund_rating interface

0.8.30: add: add fund_manager interface

0.8.31: fix: fix stock_zh_a_minute interface

0.8.32: fix: fix get_dce_rank_table interface

0.8.33: add: add stock_profit_forecast interface

0.8.34: fix: fix index_investing_global interface

0.8.35: add: add bond_zh_us_rate interface

0.8.36: add: add stock_em_fhps interface

0.8.37: add: add stock_em_yjkb interface

0.8.38: fix: fix get_czce_daily interface

0.8.39: add: add stock_board_concept_cons_ths interface

0.8.40: fix: fix stock_board_concept_cons_ths interface

0.8.41: fix: fix energy_carbon_bj interface

0.8.42: fix: fix stock_zh_a_daily interface

0.8.43: fix: fix stock_em_yjyg interface

0.8.44: fix: fix stock_em_comment interface

0.8.45: add: add stock_sse_deal_daily interface

0.8.46: fix: fix stock_board_concept_cons_ths interface

0.8.47: add: add stock_board_concept_info_ths interface

0.8.48: fix: fix fund_rating_sh fund_rating_zs fund_rating_ja interface

0.8.49: add: add stock_em_yjbb interface

0.8.50: fix: fix stock_zh_index_spot interface

0.8.51: fix: fix stock_zh_a_spot interface

0.8.52: add: add stock_em_zcfz, stock_em_lrb, stock_em_xjll interface

0.8.53: fix: fix stock_em_zcfz interface

0.8.54: fix: fix stock_register_kcb interface

0.8.55: add: add stock_ipo_declare interface

0.8.56: fix: fix index_bloomberg_billionaires interface

0.8.57: fix: fix hurun_rank interface

0.8.58: add: add hurun_rank interface

0.8.59: fix: fix get_sector_futures interface

0.8.60: fix: fix currency_hist interface

0.8.61: fix: fix stock_em_hsgt_hold_stock interface

0.8.62: fix: fix stock_zh_a_tick_163 interface

0.8.63: fix: fix futures_zh_daily_sina interface

0.8.64: fix: fix futures_inventory_em interface

0.8.65: fix: fix futures_hq_spot_df interface

0.8.66: fix: fix currency_hist interface

0.8.67: fix: fix requirements.txt interface

0.8.68: fix: fix bond_investing_global interface

0.8.69: fix: fix stock_board_concept_cons_ths interface

0.8.70: add: add stock_board_concept_index_ths interface

0.8.71: fix: fix remove obor fold

0.8.72: fix: fix stock_board_concept_index_ths interface

0.8.73: add: add stock_board_industry_index_ths interface

0.8.74: fix: fix test interface

0.8.75: fix: fix stock_board_industry_index_ths interface

0.8.76: add: add stock_notice_report interface

0.8.77: fix: fix rate_interbank interface

0.8.78: fix: fix stock_board_concept_index_ths interface

0.8.79: add: add stock_lh_yyb_most, stock_lh_yyb_capital, stock_lh_yyb_control interface

0.8.80: fix: fix stock_em_yjkb interface

0.8.81: add: add crypto_bitcoin_hold_report interface

0.8.82: fix: fix energy_carbon_hb interface

0.8.83: fix: fix get_czce_daily interface

0.8.84: fix: fix amac_fund_abs interface

0.8.85: fix: fix rename amac_person_org_list to amac_person_fund_org_list interface

0.8.86: add: add amac_person_bond_org_list interface

0.8.87: add: add stock_fund_flow_concept interface

0.8.88: add: add stock_fund_flow_industry interface

0.8.89: add: add stock_fund_flow_individual interface

0.8.90: add: add stock_fund_flow_big_deal interface

0.8.91: add: add stock_em_ggcg interface

0.8.92: fix: fix stock_zh_a_daily interface

0.8.93: fix: fix bond_spot_deal interface

0.8.94: fix: fix stock_us_daily interface

0.8.95: add: add fund_em_new_found interface

0.8.96: fix: fix get_czce_rank_table interface

0.8.97: add: add stock_wc_hot_top interface

0.8.98: add: add index_kq interface

0.8.99: fix: fix stock_individual_fund_flow_rank interface

0.9.1: fix: fix stock_profit_forecast interface

0.9.2: fix: fix get_futures_daily interface

0.9.3: fix: fix get_futures_daily interface

0.9.4: fix: fix get_shfe_daily interface

0.9.5: add: add stock_wc_hot_rank interface

0.9.6: fix: fix stock_wc_hot_rank interface

0.9.7: fix: fix stock_wc_hot_rank interface

0.9.8: fix: fix forbes_rank interface

0.9.9: fix: fix stock_a_below_net_asset_statistics interface

0.9.10: fix: fix stock_wc_hot_rank interface

0.9.11: add: add drewry_wci_index interface

0.9.12: fix: fix bond_investing_global interface

0.9.13: fix: fix currency_hist interface

0.9.14: fix: fix futures_global_commodity_hist interface

0.9.15: add: add index_kq_fashion interface

0.9.16: add: add index_eri interface

0.9.17: fix: fix futures_global_commodity_hist interface

0.9.18: fix: fix stock_em_dxsyl interface

0.9.19: add: add stock_market_activity_legu interface

0.9.20: fix: fix stock_individual_fund_flow_rank interface

0.9.21: add: add index_cflp_price interface

0.9.22: add: add index_cflp_volume interface

0.9.23: fix: fix index_cflp_volume interface

0.9.24: fix: fix stock_info_sz_name_code interface

0.9.25: add: add car_gasgoo_sale_rank interface

0.9.26: fix: fix stock_hk_daily interface

0.9.27: fix: fix stock_report_fund_hold interface

0.9.28: add: add stock_average_position_legu interface

0.9.29: add: add stock_em_qbzf interface

0.9.30: add: add stock_em_pg interface

0.9.31: fix: fix index_investing_global interface

0.9.32: fix: fix bond_investing_global interface

0.9.33: add: add marco_china_hk interface

0.9.34: fix: fix get_futures_daily interface

0.9.35: fix: fix stock_zh_a_daily interface

0.9.36: fix: fix stock_zh_a_daily hfq and qfq interface

0.9.37: fix: fix stock_wc_hot_rank interface

0.9.38: add: add stock_em_zt_pool interface

0.9.39: fix: fix stock_us_daily interface

0.9.40: fix: fix bond_cov_comparison interface

0.9.41: fix: fix stock_em_zt_pool_previous interface

0.9.42: add: add stock_em_zt_pool_strong interface

0.9.43: fix: fix stock_em_zt_pool_strong interface

0.9.44: fix: fix stock_em_zt_pool_sub_new interface

0.9.45: fix: fix stock_em_zt_pool interface

0.9.46: fix: fix spot_goods interface

0.9.47: fix: fix futures_comex_inventory interface

0.9.48: fix: fix stock_em_zcfz interface

0.9.49: fix: fix stock_hk_daily interface

0.9.50: fix: fix futures_spot_stock interface

0.9.51: fix: fix stock_hk_daily interface

0.9.52: fix: remove internal_flow_history interface

0.9.53: add: add stock_zh_a_alerts_cls interface

0.9.54: fix: fix bond_zh_us_rate interface

0.9.55: fix: fix index_vix interface

0.9.56: fix: fix macro_fx_sentiment interface

0.9.57: fix: fix stock_zh_a_alerts_cls interface

0.9.58: add: add stock_staq_net_stop interface

0.9.59: fix: fix covid_19_baidu interface

0.9.60: fix: fix currency_convert interface

0.9.61: fix: fix stock_info_sz_name_code interface

0.9.62: add: add stock_zh_a_gdhs interface

0.9.63: fix: fix stock_zh_a_gdhs interface

0.9.64: add: add futures_sina_hold_pos interface

0.9.65: fix: fix bond_zh_us_rate interface

0.9.66: fix: fix set urllib3==1.25.11

0.9.67: fix: fix stock_em_hsgt_hold_stock interface

0.9.68: fix: fix stock_zh_a_tick_tx interface

0.9.69: add: add currency_boc_sina interface

0.9.70: add: add stock_zh_a_hist interface

0.9.71: fix: fix stock_zh_a_hist interface

0.9.72: fix: fix stock_zh_a_hist interface

0.9.73: fix: fix stock_zh_a_tick_tx_js interface

0.9.74: add: add stock_changes_em interface

0.9.75: add: add stock_hk_spot_em, stock_hk_hist interface

0.9.76: add: add stock_us_spot_em, stock_us_hist interface

0.9.77: fix: fix stock_us_hist interface

0.9.78: fix: fix rename python file name interface

0.9.79: add: add crypto_bitcoin_cme interface

0.9.80: fix: fix futures_display_main_sina interface

0.9.81: add: add crypto_crix interface

0.9.82: fix: fix crypto_crix interface

0.9.83: fix: fix crypto_crix interface

0.9.84: fix: fix rename futures_hq_spot to futures_foreign_commodity_realtime interface

0.9.85: fix: fix rate_interbank interface

0.9.86: add: add fund_em_aum interface

0.9.87: fix: fix death_company interface

0.9.88: fix: fix stock_financial_analysis_indicator interface

0.9.89: fix: fix fund_manager interface

0.9.90: fix: fix stock_a_below_net_asset_statistics interface

0.9.91: fix: fix stock_em_yjbb interface

0.9.92: fix: fix stock_tfp_em interface

0.9.93: fix: fix stock_zh_a_gdhs interface

0.9.94: add: add macro_china_qyspjg, macro_china_fdi interface

0.9.95: fix: fix stock_board_concept_index_ths interface

0.9.96: fix: fix stock_info_sz_name_code interface

0.9.97: fix: fix urllib3 version at 1.25.8

0.9.98: fix: fix js_news interface

0.9.99: fix: fix news_cctv interface

1.0.1: add: add macro_usa_phs interface

1.0.2: fix: fix macro_usa_phs interface

1.0.3: add: add macro_germany interface

1.0.4: fix: fix macro_china interface

1.0.5: add: add macro_china_gyzjz interface

1.0.6: fix: fix get_receipt interface

1.0.7: fix: fix get_ine_daily interface

1.0.8: fix: fix macro_china_cpi interface

1.0.9: fix: fix stock_zh_a_gdhs interface

1.0.10: fix: fix stock_zh_a_spot_em interface

1.0.11: fix: fix stock_board_industry_name_ths interface

1.0.12: fix: fix macro_china_money_supply interface

1.0.13: fix: fix rename stock_board_concept_index_ths to stock_board_concept_hist_ths interface

1.0.14: add: add stock_board_concept_cons_em and stock_board_concept_hist_em interface

1.0.15: fix: fix stock_hk_hist interface

1.0.16: fix: fix tool_trade_date_hist_sina interface

1.0.17: fix: fix calendar.json interface

1.0.18: fix: fix reformat macro_china_national_tax_receipts, macro_china_hgjck, macro_china_stock_market_cap interface

1.0.19: fix: fix marco_china_hk interface

1.0.20: fix: fix bond_zh_hs_cov_daily interface

1.0.21: fix: fix charity_china interface

1.0.22: fix: fix stock_em_xgsglb interface

1.0.23: fix: fix stock_em_dxsyl interface

1.0.24: fix: fix stock_board_concept_hist_em interface

1.0.25: fix: fix get_receipt interface

1.0.26: add: add energy_carbon_domestic interface

1.0.27: fix: fix get_roll_yield_bar interface

1.0.28: add: add covid_19_baidu interface

1.0.29: fix: fix covid_19_baidu interface

1.0.30: fix: fix option_czce_hist interface

1.0.31: fix: fix futures_foreign_commodity_realtime interface

1.0.32: fix: fix covid_19_baidu interface

1.0.33: fix: fix bond_china_close_return interface

1.0.34: fix: fix bond_china_close_return interface

1.0.35: fix: fix bond_cov_jsl interface

1.0.36: fix: fix stock_em_hsgt_north_net_flow_in interface

1.0.37: add: add macro_swiss interface

1.0.38: add: add macro_japan interface

1.0.39: add: add macro_uk interface

1.0.40: add: add stock_szse_margin interface

1.0.41: add: add macro_australia interface

1.0.42: fix: fix index_stock_hist interface

1.0.43: fix: fix stock_margin_detail_szse interface

1.0.44: fix: fix stock_margin_detail_szse interface

1.0.45: fix: fix option_dce_daily interface and rename interface in option_commodity

1.0.46: add: add futures_pig_info interface

1.0.47: fix: fix futures_pig_info interface

1.0.48: add: add macro_canada interface

1.0.49: fix: fix stock_individual_fund_flow interface

1.0.50: fix: fix stock_em_jgdy_tj interface

1.0.51: add: add sport_olympic_hist interface

1.0.52: add: add stock_financial_hk interface

1.0.53: fix: fix tool_trade_date_hist_sina interface

1.0.54: fix: fix macro_china_gdp_yearly interface

1.0.55: fix: fix macro_china_freight_index interface

1.0.56: add: add stock_a_ttm_lyr interface

1.0.57: add: add stock_a_all_pb interface

1.0.58: add: add futures_pig_rank interface

1.0.59: fix: fix futures_zh_daily_sina interface

1.0.60: fix: fix futures_main_sina interface

1.0.61: fix: fix stock_a_all_pb interface

1.0.62: add: add futures_egg_price interface

1.0.63: fix: fix remove jyfm interface
    1. 移除交易法门相关数据接口
    2. 只在更新记录中保存

1.0.64: fix: fix rename zh_stock_kcb_report to stock_zh_kcb_report_em interface

1.0.65: fix: fix stock_em_gpzy_pledge_ratio_detail interface

1.0.66: fix: fix macro_cons_opec_month interface

1.0.67: fix: fix futures_sgx_daily interface

1.0.68: fix: remove agoyal_stock_return interface

1.0.69: fix: remove bank_rank_banker interface

1.0.70: fix: remove watch_jinshi_quotes interface

1.0.71: fix: remove watch_argus interface

1.0.72: fix: fix amac_fund_abs interface

1.0.73: add: add bond_cash_summary_sse interface

1.0.74: fix: fix bond_zh_hs_cov_spot interface

1.0.75: fix: fix bond_futures_deliverable_coupons interface

1.0.76: fix: fix stock_financial_hk_analysis_indicator_em interface

1.0.77: fix: fix macro_china_m2_yearly interface

1.0.78: add: add reits_realtime_em, reits_info_jsl interface

1.0.79: fix: fix news_cctv interface

1.0.80: add: add stock_zh_a_hist_min_em, stock_zh_a_hist_pre_min_em interface

1.0.81: add: add stock_us_hist_min_em, stock_hk_hist_min_em interface

1.0.82: fix: fix bond_zh_cov interface

1.0.83: fix: fix macro_china interface
    1. macro_china_trade_balance
    2. macro_china_imports_yoy
    3. macro_china_exports_yoy
    4. macro_china_industrial_production_yoy
    5. macro_china_pmi_yearly 
    6. macro_china_cx_pmi_yearly
    7. macro_china_cx_services_pmi_yearly
    8. macro_china_non_man_pmi
    9. macro_china_fx_reserves_yearly

1.0.84: add: add bond_zh_cov_info interface

1.0.85: fix: fix stock_report_fund_hold interface

1.0.86: fix: fix stock_em_zt_pool_dtgc interface

1.0.87: fix: fix macro_china_swap_rate interface

1.0.88: fix: fix stock_zh_a_hist_min_em interface

1.0.89: fix: fix stock_hk_hist_min_em interface

1.0.90: fix: fix stock_us_hist_min_em interface

1.0.91: fix: fix stock_zh_a_hist_min_em interface

1.0.92: fix: fix stock_zh_a_hist interface

1.0.93: fix: fix stock_hk_hist_min_em interface

1.0.94: fix: fix stock_zh_a_new interface

1.0.95: fix: fix stock_zh_a_daily interface

1.0.96: add: add stock_zh_a_st_em interface

1.0.97: fix: fix futures_spot_stock interface

1.0.98: add: add stock_zh_a_new_em interface

1.0.99: fix: fix stock_wc_hot_rank interface

1.1.1: add: add index_investing_global_from_url interface

1.1.2: add: add stock_us_pink_spot_em interface

1.1.3: add: add stock_us_famous_spot_em interface

1.1.4: fix: fix stock_average_position_legu interface

1.1.5: add: add stock_rank_forecast_cninfo interface

1.1.6: fix: fix futures_zh_minute_sina interface

1.1.7: fix: fix covid_19_trace interface

1.1.8: add: add stock_industry_pe_ratio_cninfo interface

1.1.9: fix: fix stock_js_price interface

1.1.10: fix: fix stock_em_hsgt_hold_stock interface

1.1.11: fix: fix stock_fund_flow_concept interface

1.1.12: fix: fix stock_fund_flow_industry interface

1.1.13: add: add stock_dividents_cninfo interface

1.1.14: fix: fix stock_fund_flow_concept interface

1.1.15: add: add stock_new_gh_cninfo interface

1.1.16: fix: fix stock_em_jgdy_detail interface

1.1.17: fix: fix stock_em_jgdy_tj interface

1.1.18: fix: fix stock_fund_flow_concept and stock_fund_flow_industry interface

1.1.19: add: add stock_new_ipo_cninfo interface

1.1.20: fix: fix stock_a_pe interface

1.1.21 fix: fix setuptools==57.5.0 package

1.1.22 fix: fix remove demjson package

1.1.23 fix: fix update urllib3 package

1.1.24 fix: fix email address

1.1.25 add: add stock_hold_num_cninfo interface

1.1.26 fix: fix stock_fund_flow_concept interface

1.1.27 add: add stock_hold_control_cninfo interface

1.1.28 fix: fix move project to AKFamily interface

1.1.29 fix: fix urllib3>=1.25.8 package

1.1.30 fix: fix stock_zh_index_hist_csindex interface

1.1.31 add: add stock_hold_management_detail_cninfo interface

1.1.32 add: add sw_index_representation_spot interface

1.1.33 fix: fix sw_index_xxx interface

1.1.34 fix: fix drewry_wci_index interface

1.1.35 fix: fix fund_etf_category_sina interface

1.1.36 fix: fix sw_index_daily_indicator interface

1.1.37 fix: fix drewry_wci_index interface

1.1.38 add: add futures_comm_info interface

1.1.39 fix: fix futures_comm_info interface

1.1.40 fix: fix remove covid_19_history interface

1.1.41 add: add stock_zh_b_sina interface

1.1.42 fix: fix stock_zh_a_minute interface

1.1.43 add: add stock_cg_guarantee_cninfo interface

1.1.44 fix: fix stock_zh_index_daily interface

1.1.45 fix: fix stock_zh_index_daily_tx interface

1.1.46 fix: fix remove watch_jinshi_fx interface

1.1.47 fix: fix stock_em_jgdy_tj and stock_em_jgdy_detail interface

1.1.48 fix: fix rename fund_em_portfolio_hold to fund_portfolio_hold_em interface

1.1.49 fix: fix stock_em_jgdy_tj and stock_em_jgdy_detail interface

1.1.50 add: add stock_cg_lawsuit_cninfo interface

1.1.51 fix: fix stock_wc_hot_rank interface

1.1.52 add: add stock_cg_equity_mortgage_cninfo interface

1.1.53 fix: fix index_cni_detail_hist_adjust interface

1.1.54 fix: fix stock_board_concept_hist_ths interface

1.1.55 fix: fix stock_sina_lhb_ggtj and stock_sina_lhb_jgzz interface

1.1.56 add: add fund_em_aum_hist interface

1.1.57 fix: fix stock_sina_lhb_ggtj and stock_sina_lhb_jgzz interface

1.1.58 add: add bond_treasure_issue_cninfo interface

1.1.59 add: add bond_local_government_issue_cninfo interface

1.1.60 add: add bond_corporate_issue_cninfo interface

1.1.61 add: add bond_cov_issue_cninfo interface

1.1.62 fix: fix bond_zh_us_rate interface

1.1.63 add: add bond_cov_stock_issue_cninfo interface

1.1.64 add: add fund_report_stock_cninfo interface

1.1.65 fix: fix stock_notice_report interface

1.1.66 add: add fund_report_industry_allocation_cninfo interface

1.1.67 fix: fix stock_zh_index_hist_csindex interface

1.1.68 fix: fix index_stock_cons_csindex interface

1.1.69 add: add fund_scale_open_sina interface

1.1.70 add: add fund_scale_close_sina interface

1.1.71 add: add fund_scale_structured_sina interface

1.1.72 add: add fund_report_asset_allocation_cninfo interface

1.1.73 add: add stock_zh_index_value_csindex interface

1.1.74 fix: fix fund_em_etf_fund_info interface

1.1.75 add: add index_value_hist_funddb interface

1.1.76 fix: fix amac_fund_info interface

1.1.77 fix: fix stock_zh_a_tick_163_now interface

1.1.78 add: add stock_hsgt_individual_em interface

1.1.79 fix: fix stock_em_jgdy_tj interface

1.1.80 add: add support for Python 3.10 interface

1.1.81 add: add stock_hsgt_individual_detail_em interface

1.1.82 fix: fix stock_tfp_em interface
    1. rename stock_em_tfp to stock_tfp_em
    2. reformat output data type

1.1.83 add: add stock_ipo_benefit_ths interface

1.1.84 fix: fix stock_board_industry_index_ths interface
    1. add start_date and end_date parameters

1.1.85 fix: fix stock_em_hsgt_stock_statistics interface

1.1.86 fix: fix stock_em_hsgt_stock_statistics interface

1.1.87 fix: fix stock_em_hsgt_hist interface

1.1.88 fix: fix stock_sector_spot interface

1.1.89 fix: fix stock_sector_detail interface

1.1.90 fix: fix stock_board_concept_name_ths interface

1.1.91 fix: fix stock_hsgt_individual_detail_em interface

1.1.92 add: add stock_rank_cxg_ths interface

1.1.93 add: add stock_rank_cxd_ths interface

1.1.94 fix: fix fund_portfolio_hold_em interface

1.1.95 fix: fix stock_board_concept_hist_ths interface

1.1.96 add: add bond_zh_hs_cov_min interface

1.1.97 add: add stock_rank_lxsz_ths interface

1.1.98 add: add stock_rank_lxxd_ths interface

1.1.99 add: add stock_rank_cxfl_ths interface

1.2.1 add: add stock_rank_cxsl_ths interface

1.2.2 fix: fix zh_subscribe_exchange_symbol interface
    1. fix encoding

1.2.3 add: add stock_rank_xstp_ths interface

1.2.4 fix: fix fund_portfolio_hold_em interface

1.2.5 fix: fix index_stock_hist interface

1.2.6 add: add stock_rank_xxtp_ths interface

1.2.7 add: add stock_rank_ljqd_ths interface

1.2.8 add: add stock_rank_ljqs_ths interface

1.2.9 fix: fix stock_zh_a_gdhs interface

1.2.10 fix: fix bond_zh_hs_daily interface

1.2.11 add: add stock_zh_a_gdhs_detail_em interface

1.2.12 fix: fix stock_zh_a_gdhs interface

1.2.13 add: add stock_rank_xzjp_ths interface

1.2.14 add: add sw_index_second_spot interface

1.2.15 fix: fix stock_board_industry_name_ths interface

1.2.16 add: add stock_board_cons_ths interface

1.2.17 fix: fix amac_fund_info interface

1.2.18 fix: fix amac interface

1.2.19 fix: fix amac cons.py interface

1.2.20 fix: fix stock_zh_a_spot_em interface

1.2.21 fix: fix stock_zh_a_hist interface

1.2.22 fix: fix amac_fund_info interface

1.2.23 add: add video_tv interface

1.2.24 fix: fix car_gasgoo_sale_rank interface

1.2.25 fix: fix amac_manager_classify_info interface

1.2.26 fix: fix amac interface

1.2.27 add: add online_value_artist interface

1.2.28 add: add club_rank_game interface

1.2.29 add: add player_rank_game interface

1.2.30 add: add business_value_artist interface

1.2.31 fix: fix stock_em_zt_pool interface

1.2.32 add: add video_variety_show interface

1.2.33 add: add fund_fh_em interface

1.2.34 fix: fix fund_em_open_fund_info interface

1.2.35 fix: fix fund_em_open_fund_info interface

1.2.36 add: add stock_info_bj_name_code interface

1.2.37 fix: fix stock_info_a_code_name interface

1.2.38 fix: fix futures_foreign_commodity_realtime interface

1.2.39 fix: fix stock_info_sh_delist interface

1.2.40 add: add fund_scale_change_em interface

1.2.41 add: add fund_hold_structure_em interface

1.2.42 fix: fix fund_manager interface

1.2.43 fix: fix get_czce_daily interface

1.2.44 add: add futures_index_cscidx interface

1.2.45 fix: fix stock_info_a_code_name interface

1.2.46 add: add stock_board_industry_cons_em interface

1.2.47 fix: fix covid_19_dxy interface

1.2.48 fix: fix covid_19_dxy interface

1.2.49 fix: fix rate_interbank interface

1.2.50 fix: fix nh_price_index interface

1.2.51 add: add futures_hq_subscribe_exchange_symbol interface

1.2.52 fix: fix futures_foreign_commodity_realtime interface

1.2.53 add: add get_ine_daily interface

1.2.54 fix: fix bond_zh_hs_cov_min interface

1.2.55 add: add stock_repurchase_em interface

1.2.56 fix: fix stock_zh_a_tick_163 interface

1.2.57 add: add stock_us_hist_fu interface

1.2.58 fix: fix stock_board_concept_hist_ths interface

1.2.59 fix: fix macro_china_hk interface

1.2.60 fix: fix macro_china_hk interface

1.2.61 fix: fix stock_board_concept_hist_ths interface

1.2.62 fix: fix stock_dzjy_sctj interface

1.2.63 add: add spot_hist_sge interface
```