akshare-one 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- akshare_one/insider.py +2 -5
- akshare_one/modules/financial/base.py +0 -19
- akshare_one/modules/financial/sina.py +1 -4
- akshare_one/modules/historical/base.py +0 -25
- akshare_one/modules/historical/eastmoney.py +1 -2
- akshare_one/modules/historical/sina.py +1 -2
- akshare_one/modules/insider/base.py +2 -52
- akshare_one/modules/insider/xueqiu.py +1 -2
- akshare_one/modules/news/base.py +0 -29
- akshare_one/modules/news/eastmoney.py +1 -2
- akshare_one/modules/realtime/base.py +0 -41
- akshare_one/modules/realtime/eastmoney.py +1 -2
- akshare_one/modules/realtime/xueqiu.py +1 -2
- akshare_one/stock.py +1 -1
- {akshare_one-0.2.0.dist-info → akshare_one-0.2.1.dist-info}/METADATA +9 -9
- akshare_one-0.2.1.dist-info/RECORD +29 -0
- {akshare_one-0.2.0.dist-info → akshare_one-0.2.1.dist-info}/WHEEL +1 -1
- akshare_one-0.2.0.dist-info/RECORD +0 -29
- {akshare_one-0.2.0.dist-info → akshare_one-0.2.1.dist-info}/licenses/LICENSE +0 -0
- {akshare_one-0.2.0.dist-info → akshare_one-0.2.1.dist-info}/top_level.txt +0 -0
akshare_one/insider.py
CHANGED
@@ -3,19 +3,16 @@
|
|
3
3
|
包含上市公司内部交易相关功能
|
4
4
|
"""
|
5
5
|
|
6
|
-
from typing import Optional
|
7
6
|
import pandas as pd
|
8
7
|
from .modules.insider.factory import InsiderDataFactory
|
9
8
|
|
10
9
|
|
11
|
-
def get_inner_trade_data(
|
12
|
-
symbol: Optional[str] = None, source: str = "xueqiu"
|
13
|
-
) -> "pd.DataFrame":
|
10
|
+
def get_inner_trade_data(symbol: str, source: str = "xueqiu") -> "pd.DataFrame":
|
14
11
|
"""获取雪球内部交易数据
|
15
12
|
|
16
13
|
Args:
|
17
14
|
source: 数据源 (目前支持 "xueqiu")
|
18
|
-
symbol:
|
15
|
+
symbol: 股票代码,如"600000"
|
19
16
|
|
20
17
|
Returns:
|
21
18
|
pd.DataFrame:
|
@@ -2,25 +2,6 @@ from abc import ABC, abstractmethod
|
|
2
2
|
import pandas as pd
|
3
3
|
|
4
4
|
|
5
|
-
def validate_financial_data(func):
|
6
|
-
"""Decorator to validate financial data returned by data providers"""
|
7
|
-
|
8
|
-
def wrapper(*args, **kwargs):
|
9
|
-
df = func(*args, **kwargs)
|
10
|
-
|
11
|
-
if not isinstance(df, pd.DataFrame):
|
12
|
-
raise ValueError("Returned data must be a pandas DataFrame")
|
13
|
-
|
14
|
-
# Validate report_date if present
|
15
|
-
if "report_date" in df.columns:
|
16
|
-
if not pd.api.types.is_datetime64_any_dtype(df["report_date"]):
|
17
|
-
raise ValueError("report_date must be datetime64 dtype")
|
18
|
-
|
19
|
-
return df
|
20
|
-
|
21
|
-
return wrapper
|
22
|
-
|
23
|
-
|
24
5
|
class FinancialDataProvider(ABC):
|
25
6
|
def __init__(self, symbol: str) -> None:
|
26
7
|
self.symbol = symbol
|
@@ -3,7 +3,7 @@ import pandas as pd
|
|
3
3
|
import akshare as ak
|
4
4
|
|
5
5
|
from akshare_one.modules.cache import CACHE_CONFIG
|
6
|
-
from .base import FinancialDataProvider
|
6
|
+
from .base import FinancialDataProvider
|
7
7
|
|
8
8
|
|
9
9
|
class SinaFinancialReport(FinancialDataProvider):
|
@@ -13,7 +13,6 @@ class SinaFinancialReport(FinancialDataProvider):
|
|
13
13
|
f"sh{symbol}" if not symbol.startswith(("sh", "sz", "bj")) else symbol
|
14
14
|
)
|
15
15
|
|
16
|
-
@validate_financial_data
|
17
16
|
@cached(
|
18
17
|
CACHE_CONFIG["financial_cache"],
|
19
18
|
key=lambda self, symbol=None: f"sina_balance_{self.symbol}",
|
@@ -30,7 +29,6 @@ class SinaFinancialReport(FinancialDataProvider):
|
|
30
29
|
raw_df = ak.stock_financial_report_sina(stock=self.stock, symbol="资产负债表")
|
31
30
|
return self._clean_balance_data(raw_df)
|
32
31
|
|
33
|
-
@validate_financial_data
|
34
32
|
@cached(
|
35
33
|
CACHE_CONFIG["financial_cache"],
|
36
34
|
key=lambda self, symbol=None: f"sina_income_{self.symbol}",
|
@@ -47,7 +45,6 @@ class SinaFinancialReport(FinancialDataProvider):
|
|
47
45
|
raw_df = ak.stock_financial_report_sina(stock=self.stock, symbol="利润表")
|
48
46
|
return self._clean_income_data(raw_df)
|
49
47
|
|
50
|
-
@validate_financial_data
|
51
48
|
@cached(
|
52
49
|
CACHE_CONFIG["financial_cache"],
|
53
50
|
key=lambda self, symbol=None: f"sina_cash_{self.symbol}",
|
@@ -2,31 +2,6 @@ from abc import ABC, abstractmethod
|
|
2
2
|
import pandas as pd
|
3
3
|
|
4
4
|
|
5
|
-
def validate_hist_data(func):
|
6
|
-
"""Decorator to validate historical data returned by data providers"""
|
7
|
-
|
8
|
-
def wrapper(*args, **kwargs):
|
9
|
-
df = func(*args, **kwargs)
|
10
|
-
|
11
|
-
if not isinstance(df, pd.DataFrame):
|
12
|
-
raise ValueError("Returned data must be a pandas DataFrame")
|
13
|
-
|
14
|
-
required_columns = {"timestamp", "open", "high", "low", "close", "volume"}
|
15
|
-
missing_cols = required_columns - set(df.columns)
|
16
|
-
if missing_cols:
|
17
|
-
raise ValueError(f"Missing required columns: {missing_cols}")
|
18
|
-
|
19
|
-
if "timestamp" in df.columns:
|
20
|
-
if not pd.api.types.is_datetime64_any_dtype(df["timestamp"]):
|
21
|
-
raise ValueError("timestamp must be datetime64 dtype")
|
22
|
-
if df["timestamp"].dt.tz is None or str(df["timestamp"].dt.tz) != "UTC":
|
23
|
-
raise ValueError("timestamp must be in UTC timezone")
|
24
|
-
|
25
|
-
return df
|
26
|
-
|
27
|
-
return wrapper
|
28
|
-
|
29
|
-
|
30
5
|
class HistoricalDataProvider(ABC):
|
31
6
|
def __init__(
|
32
7
|
self,
|
@@ -1,5 +1,5 @@
|
|
1
1
|
from cachetools import cached
|
2
|
-
from .base import HistoricalDataProvider
|
2
|
+
from .base import HistoricalDataProvider
|
3
3
|
import akshare as ak
|
4
4
|
import pandas as pd
|
5
5
|
from ..cache import CACHE_CONFIG
|
@@ -8,7 +8,6 @@ from ..cache import CACHE_CONFIG
|
|
8
8
|
class EastMoneyHistorical(HistoricalDataProvider):
|
9
9
|
"""Adapter for EastMoney historical stock data API"""
|
10
10
|
|
11
|
-
@validate_hist_data
|
12
11
|
@cached(
|
13
12
|
cache=CACHE_CONFIG["hist_data_cache"],
|
14
13
|
key=lambda self: f"eastmoney_hist_{self.symbol}_{self.interval}_{self.interval_multiplier}_{self.adjust}",
|
@@ -1,5 +1,5 @@
|
|
1
1
|
from cachetools import cached
|
2
|
-
from .base import HistoricalDataProvider
|
2
|
+
from .base import HistoricalDataProvider
|
3
3
|
import akshare as ak
|
4
4
|
import pandas as pd
|
5
5
|
from ..cache import CACHE_CONFIG
|
@@ -8,7 +8,6 @@ from ..cache import CACHE_CONFIG
|
|
8
8
|
class SinaHistorical(HistoricalDataProvider):
|
9
9
|
"""Adapter for Sina historical stock data API"""
|
10
10
|
|
11
|
-
@validate_hist_data
|
12
11
|
@cached(
|
13
12
|
cache=CACHE_CONFIG["hist_data_cache"],
|
14
13
|
key=lambda self: f"sina_hist_{self.symbol}_{self.interval}_{self.interval_multiplier}_{self.adjust}",
|
@@ -1,63 +1,13 @@
|
|
1
1
|
from abc import ABC, abstractmethod
|
2
2
|
import pandas as pd
|
3
|
-
from typing import Optional
|
4
|
-
|
5
|
-
|
6
|
-
def validate_insider_data(func):
|
7
|
-
"""Decorator to validate insider trading data returned by data providers"""
|
8
|
-
|
9
|
-
def wrapper(*args, **kwargs):
|
10
|
-
df = func(*args, **kwargs)
|
11
|
-
|
12
|
-
if not isinstance(df, pd.DataFrame):
|
13
|
-
raise ValueError("Returned data must be a pandas DataFrame")
|
14
|
-
|
15
|
-
# Required fields for insider trading data
|
16
|
-
required_fields = {
|
17
|
-
"symbol",
|
18
|
-
"issuer",
|
19
|
-
"name",
|
20
|
-
"transaction_date",
|
21
|
-
"transaction_shares",
|
22
|
-
"transaction_price_per_share",
|
23
|
-
}
|
24
|
-
if not required_fields.issubset(df.columns):
|
25
|
-
missing = required_fields - set(df.columns)
|
26
|
-
raise ValueError(f"Missing required fields: {missing}")
|
27
|
-
|
28
|
-
# Validate timestamp if present
|
29
|
-
if "transaction_date" in df.columns:
|
30
|
-
if not pd.api.types.is_datetime64_any_dtype(df["transaction_date"]):
|
31
|
-
raise ValueError("transaction_date must be datetime64 dtype")
|
32
|
-
if (
|
33
|
-
df["transaction_date"].dt.tz is None
|
34
|
-
or str(df["transaction_date"].dt.tz) != "UTC"
|
35
|
-
):
|
36
|
-
raise ValueError("transaction_date must be in UTC timezone")
|
37
|
-
|
38
|
-
# Validate numeric fields
|
39
|
-
numeric_fields = {
|
40
|
-
"transaction_shares",
|
41
|
-
"transaction_price_per_share",
|
42
|
-
"transaction_value",
|
43
|
-
"shares_owned_before_transaction",
|
44
|
-
"shares_owned_after_transaction",
|
45
|
-
}
|
46
|
-
for field in numeric_fields & set(df.columns):
|
47
|
-
if not pd.api.types.is_numeric_dtype(df[field]):
|
48
|
-
raise ValueError(f"{field} must be numeric")
|
49
|
-
|
50
|
-
return df
|
51
|
-
|
52
|
-
return wrapper
|
53
3
|
|
54
4
|
|
55
5
|
class InsiderDataProvider(ABC):
|
56
|
-
def __init__(self, symbol:
|
6
|
+
def __init__(self, symbol: str) -> None:
|
57
7
|
self.symbol = symbol
|
58
8
|
|
59
9
|
@abstractmethod
|
60
|
-
def get_inner_trade_data(self
|
10
|
+
def get_inner_trade_data(self) -> pd.DataFrame:
|
61
11
|
"""Fetches insider trade data
|
62
12
|
|
63
13
|
Returns:
|
@@ -1,7 +1,7 @@
|
|
1
1
|
from cachetools import cached
|
2
2
|
import pandas as pd
|
3
3
|
import akshare as ak
|
4
|
-
from .base import InsiderDataProvider
|
4
|
+
from .base import InsiderDataProvider
|
5
5
|
from ..utils import convert_xieqiu_symbol
|
6
6
|
from ..cache import CACHE_CONFIG
|
7
7
|
|
@@ -9,7 +9,6 @@ from ..cache import CACHE_CONFIG
|
|
9
9
|
class XueQiuInsider(InsiderDataProvider):
|
10
10
|
"""Provider for XueQiu insider trading data"""
|
11
11
|
|
12
|
-
@validate_insider_data
|
13
12
|
@cached(
|
14
13
|
cache=CACHE_CONFIG["financial_cache"],
|
15
14
|
key=lambda self, symbol=None: f"xueqiu_insider_{symbol if symbol else 'all'}",
|
akshare_one/modules/news/base.py
CHANGED
@@ -2,35 +2,6 @@ from abc import ABC, abstractmethod
|
|
2
2
|
import pandas as pd
|
3
3
|
|
4
4
|
|
5
|
-
def validate_news_data(func):
|
6
|
-
"""Decorator to validate news data returned by data providers"""
|
7
|
-
|
8
|
-
def wrapper(*args, **kwargs):
|
9
|
-
df = func(*args, **kwargs)
|
10
|
-
|
11
|
-
if not isinstance(df, pd.DataFrame):
|
12
|
-
raise ValueError("Returned data must be a pandas DataFrame")
|
13
|
-
|
14
|
-
# Required fields
|
15
|
-
required_fields = {"title", "publish_time"}
|
16
|
-
if not required_fields & set(df.columns):
|
17
|
-
raise ValueError(f"Must contain all required fields: {required_fields}")
|
18
|
-
|
19
|
-
# Validate publish_time if present
|
20
|
-
if "publish_time" in df.columns:
|
21
|
-
if not pd.api.types.is_datetime64_any_dtype(df["publish_time"]):
|
22
|
-
raise ValueError("publish_time must be datetime64 dtype")
|
23
|
-
if (
|
24
|
-
df["publish_time"].dt.tz is None
|
25
|
-
or str(df["publish_time"].dt.tz) != "UTC"
|
26
|
-
):
|
27
|
-
raise ValueError("publish_time must be in UTC timezone")
|
28
|
-
|
29
|
-
return df
|
30
|
-
|
31
|
-
return wrapper
|
32
|
-
|
33
|
-
|
34
5
|
class NewsDataProvider(ABC):
|
35
6
|
def __init__(self, symbol: str) -> None:
|
36
7
|
self.symbol = symbol
|
@@ -3,11 +3,10 @@ import pandas as pd
|
|
3
3
|
import akshare as ak
|
4
4
|
|
5
5
|
from ..cache import CACHE_CONFIG
|
6
|
-
from .base import NewsDataProvider
|
6
|
+
from .base import NewsDataProvider
|
7
7
|
|
8
8
|
|
9
9
|
class EastMoneyNews(NewsDataProvider):
|
10
|
-
@validate_news_data
|
11
10
|
@cached(
|
12
11
|
CACHE_CONFIG["news_cache"],
|
13
12
|
key=lambda self: f"eastmoney_news_{self.symbol}",
|
@@ -2,47 +2,6 @@ from abc import ABC, abstractmethod
|
|
2
2
|
import pandas as pd
|
3
3
|
|
4
4
|
|
5
|
-
def validate_realtime_data(func):
|
6
|
-
"""Decorator to validate realtime data returned by data providers"""
|
7
|
-
|
8
|
-
def wrapper(*args, **kwargs):
|
9
|
-
df = func(*args, **kwargs)
|
10
|
-
|
11
|
-
if not isinstance(df, pd.DataFrame):
|
12
|
-
raise ValueError("Returned data must be a pandas DataFrame")
|
13
|
-
|
14
|
-
# At least one of these core fields must be present
|
15
|
-
core_fields = {"timestamp", "price", "volume"}
|
16
|
-
if not core_fields & set(df.columns):
|
17
|
-
raise ValueError(f"Must contain at least one of: {core_fields}")
|
18
|
-
|
19
|
-
# Validate timestamp if present
|
20
|
-
if "timestamp" in df.columns:
|
21
|
-
if not pd.api.types.is_datetime64_any_dtype(df["timestamp"]):
|
22
|
-
raise ValueError("timestamp must be datetime64 dtype")
|
23
|
-
if df["timestamp"].dt.tz is None or str(df["timestamp"].dt.tz) != "UTC":
|
24
|
-
raise ValueError("timestamp must be in UTC timezone")
|
25
|
-
|
26
|
-
# Validate numeric fields if present
|
27
|
-
numeric_fields = {
|
28
|
-
"price",
|
29
|
-
"change",
|
30
|
-
"pct_change",
|
31
|
-
"open",
|
32
|
-
"high",
|
33
|
-
"low",
|
34
|
-
"prev_close",
|
35
|
-
"amount",
|
36
|
-
}
|
37
|
-
for field in numeric_fields & set(df.columns):
|
38
|
-
if not pd.api.types.is_numeric_dtype(df[field]):
|
39
|
-
raise ValueError(f"{field} must be numeric")
|
40
|
-
|
41
|
-
return df
|
42
|
-
|
43
|
-
return wrapper
|
44
|
-
|
45
|
-
|
46
5
|
class RealtimeDataProvider(ABC):
|
47
6
|
def __init__(self, symbol: str) -> None:
|
48
7
|
self.symbol = symbol
|
@@ -3,11 +3,10 @@ import pandas as pd
|
|
3
3
|
import akshare as ak
|
4
4
|
|
5
5
|
from ..cache import CACHE_CONFIG
|
6
|
-
from .base import RealtimeDataProvider
|
6
|
+
from .base import RealtimeDataProvider
|
7
7
|
|
8
8
|
|
9
9
|
class EastmoneyRealtime(RealtimeDataProvider):
|
10
|
-
@validate_realtime_data
|
11
10
|
@cached(
|
12
11
|
CACHE_CONFIG["realtime_cache"],
|
13
12
|
key=lambda self, symbol=None: f"eastmoney_{symbol if symbol else 'all'}",
|
@@ -3,11 +3,10 @@ import pandas as pd
|
|
3
3
|
import akshare as ak
|
4
4
|
from ..utils import convert_xieqiu_symbol
|
5
5
|
from ..cache import CACHE_CONFIG
|
6
|
-
from .base import RealtimeDataProvider
|
6
|
+
from .base import RealtimeDataProvider
|
7
7
|
|
8
8
|
|
9
9
|
class XueQiuRealtime(RealtimeDataProvider):
|
10
|
-
@validate_realtime_data
|
11
10
|
@cached(
|
12
11
|
cache=CACHE_CONFIG["realtime_cache"],
|
13
12
|
key=lambda self, symbol=None: f"xueqiu_{symbol}",
|
akshare_one/stock.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: akshare-one
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.1
|
4
4
|
Summary: Standardized interface for Chinese financial market data, built on AKShare with unified data formats and simplified APIs
|
5
5
|
License-Expression: MIT
|
6
6
|
Project-URL: Homepage, https://github.com/zwldarren/akshare-one
|
@@ -9,35 +9,35 @@ Keywords: akshare,financial-data,stock-data,quant
|
|
9
9
|
Requires-Python: >=3.12
|
10
10
|
Description-Content-Type: text/markdown
|
11
11
|
License-File: LICENSE
|
12
|
-
Requires-Dist: akshare>=1.16.
|
13
|
-
Requires-Dist: cachetools>=
|
12
|
+
Requires-Dist: akshare>=1.16.98
|
13
|
+
Requires-Dist: cachetools>=6.0.0
|
14
14
|
Dynamic: license-file
|
15
15
|
|
16
16
|
<div align="center">
|
17
17
|
<h1>AKShare One</h1>
|
18
18
|
<div>
|
19
|
-
<
|
19
|
+
<a href="README_zh.md">中文</a> | <strong>English</strong>
|
20
20
|
</div>
|
21
21
|
</div>
|
22
22
|
|
23
|
-
**AKShare One** is a
|
23
|
+
**AKShare One** is a data interface for obtaining Chinese A-shares, based on [AKShare](https://github.com/akfamily/akshare). It aims to simplify AKShare's usage and unify input/output formats from different data sources, making it easier to pass data to LLM.
|
24
24
|
|
25
25
|
## ✨ Features
|
26
26
|
|
27
27
|
- 📊 Unified stock code formats across data sources
|
28
28
|
- 🏗️ Standardized return data structures
|
29
|
-
- 🛠️ Simplified API
|
29
|
+
- 🛠️ Simplified API parameter design
|
30
30
|
- ⏱️ Automatic timestamp and adjustment handling
|
31
31
|
|
32
32
|
## 🚀 Core Features
|
33
33
|
|
34
|
-
|
|
35
|
-
|
34
|
+
| Function | Interface |
|
35
|
+
|------|------|
|
36
36
|
| Historical data | `get_hist_data` |
|
37
37
|
| Real-time quotes | `get_realtime_data` |
|
38
38
|
| Stock news | `get_news_data` |
|
39
39
|
| Financial data | `get_balance_sheet`/`get_income_statement`/`get_cash_flow` |
|
40
|
-
|
|
40
|
+
| Internal transactions | `get_inner_trade_data` |
|
41
41
|
|
42
42
|
## 📦 Quick Installation
|
43
43
|
|
@@ -0,0 +1,29 @@
|
|
1
|
+
akshare_one/__init__.py,sha256=M4eXCnBzGqa5FihT-q7DHaluTvidnqwVF7AgPgCikKU,878
|
2
|
+
akshare_one/financial.py,sha256=XAsonRzGK8akKtW2Q7LUrew4OFRnRAfZm0nw0JY73Jc,1426
|
3
|
+
akshare_one/insider.py,sha256=fM6wvlLSGm7a2NkQFvxEK2PkhN5WudrO-V0BboVz2Bo,1092
|
4
|
+
akshare_one/news.py,sha256=yrYeCaKTgCGP-TSyOfOou9gMw8185qiWrg380fD9-f8,669
|
5
|
+
akshare_one/stock.py,sha256=7Suh8SWbn9LPO-dylu1oKnb25iFadiTL5lxLYC-uvDs,2226
|
6
|
+
akshare_one/modules/cache.py,sha256=47A80Xtfr4gkKvEfBQrT8Dz8hNFR769rBa2gU6ew25s,373
|
7
|
+
akshare_one/modules/utils.py,sha256=H4nrGf8m4_ezTiW5-OcNPxpV-neTYfffEfaOLDFLY9Y,323
|
8
|
+
akshare_one/modules/financial/base.py,sha256=qj_XeujG7Tn2oO1niuIG4s7lMH3xg5zERDbcj75DUnU,536
|
9
|
+
akshare_one/modules/financial/factory.py,sha256=GqzFp6LoHWj7t5VwtZJkLFxBuaAW_0b__bduBrmlcOg,1301
|
10
|
+
akshare_one/modules/financial/sina.py,sha256=Hf6fVeN0gClS9GU2N9Hg6QJ1f8X4mecpEA6KWVgiwTc,10914
|
11
|
+
akshare_one/modules/historical/base.py,sha256=UeKfMU_k8SgazXn27M1FVNaYJ5vBNgUB0jVBDpgXnz8,980
|
12
|
+
akshare_one/modules/historical/eastmoney.py,sha256=2bYXobIwlrd5vG8pHlUZVE6edjQqn8AEGCVFGcWCCKk,8248
|
13
|
+
akshare_one/modules/historical/factory.py,sha256=adxNNo_-PT180QXRUNwkdiN5x0lDJpPCt6rNFZcJ0ps,1389
|
14
|
+
akshare_one/modules/historical/sina.py,sha256=R-5hBOP5zslDuC0qfzw5zNhQyWmbmkmqB2sI2WhKVgI,7249
|
15
|
+
akshare_one/modules/insider/base.py,sha256=xOhBDzMtZd1DutsHaJWe931P17fgW7dlivo1vz5ZflI,949
|
16
|
+
akshare_one/modules/insider/factory.py,sha256=om51vX-GTXknpptZGvmDD9m10FfgEVmy402xZ3bBsNM,1280
|
17
|
+
akshare_one/modules/insider/xueqiu.py,sha256=2gmSrcer8qw2Jb80kYT3tHNJ3U88hxd0dJSfoh846EY,3971
|
18
|
+
akshare_one/modules/news/base.py,sha256=yrBZf1q1QwJkCXygNmeLIEjvcqm1iti63tjb3s40L_4,559
|
19
|
+
akshare_one/modules/news/eastmoney.py,sha256=efVT4plk03s8TbSfhAhRLWgMLlR5G_2G0xGZTQgSxmY,1333
|
20
|
+
akshare_one/modules/news/factory.py,sha256=Em6c7m46K760iwIX3GZ15HdFu7pXT2w-n4QsjwHezjY,1264
|
21
|
+
akshare_one/modules/realtime/base.py,sha256=XtD-4L1pCrMtfbwtZR7tP_BhWB_eMWtpQr89rAdX7P4,702
|
22
|
+
akshare_one/modules/realtime/eastmoney.py,sha256=7IR35dwPr5xj0ErdBajYwyBivEoi55wd1Q5c0DEjUAI,1650
|
23
|
+
akshare_one/modules/realtime/factory.py,sha256=SxDvJJvp6VutRqLUGYRnrUBtJEOE0N7vVh5Rw-vJ6NY,1373
|
24
|
+
akshare_one/modules/realtime/xueqiu.py,sha256=LKu0fW0EMt3c2m1w2kqBbEt9s2TcHUeBFpbFtueJgbU,2241
|
25
|
+
akshare_one-0.2.1.dist-info/licenses/LICENSE,sha256=Gg6A1GNSJCZWQ73aHJ7TXOa0i8RQ3FejZCTZ6Db07cU,1066
|
26
|
+
akshare_one-0.2.1.dist-info/METADATA,sha256=ofJg4rjif2v6WZJfiO4JjHk_-Q_I3-CDQXp6wPU7Vas,1897
|
27
|
+
akshare_one-0.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
28
|
+
akshare_one-0.2.1.dist-info/top_level.txt,sha256=kNiucyLVAGa89wmUSpXbBLWD7pF_RuahuiaOfLHZSyw,12
|
29
|
+
akshare_one-0.2.1.dist-info/RECORD,,
|
@@ -1,29 +0,0 @@
|
|
1
|
-
akshare_one/__init__.py,sha256=M4eXCnBzGqa5FihT-q7DHaluTvidnqwVF7AgPgCikKU,878
|
2
|
-
akshare_one/financial.py,sha256=XAsonRzGK8akKtW2Q7LUrew4OFRnRAfZm0nw0JY73Jc,1426
|
3
|
-
akshare_one/insider.py,sha256=fnbVT--7jGCvULhsiKNqLmZggo1VmR-eNOr4iq5BI7I,1179
|
4
|
-
akshare_one/news.py,sha256=yrYeCaKTgCGP-TSyOfOou9gMw8185qiWrg380fD9-f8,669
|
5
|
-
akshare_one/stock.py,sha256=K8KOHxHszHoWmdhgO4sj-6zfIUSMS--0PdzgsAOGk88,2203
|
6
|
-
akshare_one/modules/cache.py,sha256=47A80Xtfr4gkKvEfBQrT8Dz8hNFR769rBa2gU6ew25s,373
|
7
|
-
akshare_one/modules/utils.py,sha256=H4nrGf8m4_ezTiW5-OcNPxpV-neTYfffEfaOLDFLY9Y,323
|
8
|
-
akshare_one/modules/financial/base.py,sha256=JRZJhzl7kP16KEVOXP9mq1DjXW6rga2FJ8-sI5FH814,1107
|
9
|
-
akshare_one/modules/financial/factory.py,sha256=GqzFp6LoHWj7t5VwtZJkLFxBuaAW_0b__bduBrmlcOg,1301
|
10
|
-
akshare_one/modules/financial/sina.py,sha256=gHrbmykselWZC5tqR1Zkyc3oK0TcCCdCn_1z_8C2y_U,11026
|
11
|
-
akshare_one/modules/historical/base.py,sha256=hIk-DKxaDXfx9y9VWx-b918ntv6pCeqxjHpAiS7A5ZQ,1895
|
12
|
-
akshare_one/modules/historical/eastmoney.py,sha256=8lTZjbQ-P713vBvJxXTBmn6hPpNslWf5uAW8R6HJtyo,8292
|
13
|
-
akshare_one/modules/historical/factory.py,sha256=adxNNo_-PT180QXRUNwkdiN5x0lDJpPCt6rNFZcJ0ps,1389
|
14
|
-
akshare_one/modules/historical/sina.py,sha256=d-AWr4C72nvPYOC9IETqUXDoksofztWyoe9Ie9TC9Z0,7293
|
15
|
-
akshare_one/modules/insider/base.py,sha256=_TDvHr6TZa0sTynE_ZL0njnms-cb5Wd8hfqR7pdfvrU,2728
|
16
|
-
akshare_one/modules/insider/factory.py,sha256=om51vX-GTXknpptZGvmDD9m10FfgEVmy402xZ3bBsNM,1280
|
17
|
-
akshare_one/modules/insider/xueqiu.py,sha256=8ZBRn8tW4r0aTEsoaQuYzcNQ-q2oQ64Cn7VG_Hs8hhE,4021
|
18
|
-
akshare_one/modules/news/base.py,sha256=L55BLQionqTZGmrHZDpmNKuhcWQdIN8ZKR9jsMj1Bgo,1550
|
19
|
-
akshare_one/modules/news/eastmoney.py,sha256=iuZgpvub9zKDJNtGIShFXBQRHIG10oEvdMiYFDvbsdI,1377
|
20
|
-
akshare_one/modules/news/factory.py,sha256=Em6c7m46K760iwIX3GZ15HdFu7pXT2w-n4QsjwHezjY,1264
|
21
|
-
akshare_one/modules/realtime/base.py,sha256=Yztkh9IhCr0Y-N8SH81APL9uNr4ZMd10B5KfcC6Ekcg,2093
|
22
|
-
akshare_one/modules/realtime/eastmoney.py,sha256=PPfRC3LUIH0HWbjkgfHgoER5Aq8CtqGFbazjJdYFqcQ,1702
|
23
|
-
akshare_one/modules/realtime/factory.py,sha256=SxDvJJvp6VutRqLUGYRnrUBtJEOE0N7vVh5Rw-vJ6NY,1373
|
24
|
-
akshare_one/modules/realtime/xueqiu.py,sha256=WnSRktk4eyFV8_8c9SpCtL6UN08vdZdzFpCyhMyLRPM,2293
|
25
|
-
akshare_one-0.2.0.dist-info/licenses/LICENSE,sha256=Gg6A1GNSJCZWQ73aHJ7TXOa0i8RQ3FejZCTZ6Db07cU,1066
|
26
|
-
akshare_one-0.2.0.dist-info/METADATA,sha256=glFdSHMMfGgYlg1DIZvQ1r0xKnMCQHFgV215lM2pmbo,1865
|
27
|
-
akshare_one-0.2.0.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
28
|
-
akshare_one-0.2.0.dist-info/top_level.txt,sha256=kNiucyLVAGa89wmUSpXbBLWD7pF_RuahuiaOfLHZSyw,12
|
29
|
-
akshare_one-0.2.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|