tinyshare 0.1.0__tar.gz
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.
- tinyshare-0.1.0/LICENSE +21 -0
- tinyshare-0.1.0/MANIFEST.in +7 -0
- tinyshare-0.1.0/PKG-INFO +83 -0
- tinyshare-0.1.0/README.md +52 -0
- tinyshare-0.1.0/pyproject.toml +39 -0
- tinyshare-0.1.0/requirements.txt +2 -0
- tinyshare-0.1.0/setup.cfg +4 -0
- tinyshare-0.1.0/setup.py +37 -0
- tinyshare-0.1.0/tinyshare/__init__.py +114 -0
- tinyshare-0.1.0/tinyshare.egg-info/PKG-INFO +83 -0
- tinyshare-0.1.0/tinyshare.egg-info/SOURCES.txt +12 -0
- tinyshare-0.1.0/tinyshare.egg-info/dependency_links.txt +1 -0
- tinyshare-0.1.0/tinyshare.egg-info/requires.txt +2 -0
- tinyshare-0.1.0/tinyshare.egg-info/top_level.txt +1 -0
tinyshare-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 TinyShare
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
tinyshare-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tinyshare
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A lightweight wrapper for tushare financial data API
|
|
5
|
+
Home-page: https://github.com/yourusername/tinyshare
|
|
6
|
+
Author: Your Name
|
|
7
|
+
Author-email: Your Name <your.email@example.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Homepage, https://github.com/yourusername/tinyshare
|
|
10
|
+
Project-URL: Repository, https://github.com/yourusername/tinyshare.git
|
|
11
|
+
Project-URL: Issues, https://github.com/yourusername/tinyshare/issues
|
|
12
|
+
Keywords: finance,stock,data,tushare,api
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
+
Classifier: Topic :: Office/Business :: Financial
|
|
25
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
26
|
+
Requires-Python: >=3.7
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Requires-Dist: tushare>=1.2.0
|
|
30
|
+
Requires-Dist: pandas>=1.0.0
|
|
31
|
+
|
|
32
|
+
# TinyShare
|
|
33
|
+
|
|
34
|
+
A lightweight wrapper for tushare financial data API that provides the exact same interface as tushare but with additional features and optimizations.
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install tinyshare
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Usage
|
|
43
|
+
|
|
44
|
+
TinyShare provides the exact same API as tushare, so you can simply replace your import statement:
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
# Instead of: import tushare as ts
|
|
48
|
+
import tinyshare as ts
|
|
49
|
+
|
|
50
|
+
# Set your token
|
|
51
|
+
ts.set_token('your_tushare_token_here')
|
|
52
|
+
pro = ts.pro_api()
|
|
53
|
+
|
|
54
|
+
# Get index daily data
|
|
55
|
+
df = pro.index_daily(
|
|
56
|
+
ts_code='000001.SH',
|
|
57
|
+
start_date='20250621',
|
|
58
|
+
end_date='20250628'
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
print(df)
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Features
|
|
65
|
+
|
|
66
|
+
- **100% API Compatible**: Drop-in replacement for tushare
|
|
67
|
+
- **Enhanced Error Handling**: Better error messages and debugging
|
|
68
|
+
- **Performance Optimizations**: Caching and request optimization
|
|
69
|
+
- **Easy Migration**: Simply change your import statement
|
|
70
|
+
|
|
71
|
+
## Requirements
|
|
72
|
+
|
|
73
|
+
- Python 3.7+
|
|
74
|
+
- tushare>=1.2.0
|
|
75
|
+
- pandas>=1.0.0
|
|
76
|
+
|
|
77
|
+
## License
|
|
78
|
+
|
|
79
|
+
MIT License
|
|
80
|
+
|
|
81
|
+
## Contributing
|
|
82
|
+
|
|
83
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# TinyShare
|
|
2
|
+
|
|
3
|
+
A lightweight wrapper for tushare financial data API that provides the exact same interface as tushare but with additional features and optimizations.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install tinyshare
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
TinyShare provides the exact same API as tushare, so you can simply replace your import statement:
|
|
14
|
+
|
|
15
|
+
```python
|
|
16
|
+
# Instead of: import tushare as ts
|
|
17
|
+
import tinyshare as ts
|
|
18
|
+
|
|
19
|
+
# Set your token
|
|
20
|
+
ts.set_token('your_tushare_token_here')
|
|
21
|
+
pro = ts.pro_api()
|
|
22
|
+
|
|
23
|
+
# Get index daily data
|
|
24
|
+
df = pro.index_daily(
|
|
25
|
+
ts_code='000001.SH',
|
|
26
|
+
start_date='20250621',
|
|
27
|
+
end_date='20250628'
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
print(df)
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Features
|
|
34
|
+
|
|
35
|
+
- **100% API Compatible**: Drop-in replacement for tushare
|
|
36
|
+
- **Enhanced Error Handling**: Better error messages and debugging
|
|
37
|
+
- **Performance Optimizations**: Caching and request optimization
|
|
38
|
+
- **Easy Migration**: Simply change your import statement
|
|
39
|
+
|
|
40
|
+
## Requirements
|
|
41
|
+
|
|
42
|
+
- Python 3.7+
|
|
43
|
+
- tushare>=1.2.0
|
|
44
|
+
- pandas>=1.0.0
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
|
|
48
|
+
MIT License
|
|
49
|
+
|
|
50
|
+
## Contributing
|
|
51
|
+
|
|
52
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=45", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tinyshare"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "A lightweight wrapper for tushare financial data API"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.7"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Your Name", email = "your.email@example.com"}
|
|
14
|
+
]
|
|
15
|
+
keywords = ["finance", "stock", "data", "tushare", "api"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 3 - Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Intended Audience :: Financial and Insurance Industry",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
"Operating System :: OS Independent",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Programming Language :: Python :: 3.7",
|
|
24
|
+
"Programming Language :: Python :: 3.8",
|
|
25
|
+
"Programming Language :: Python :: 3.9",
|
|
26
|
+
"Programming Language :: Python :: 3.10",
|
|
27
|
+
"Programming Language :: Python :: 3.11",
|
|
28
|
+
"Topic :: Office/Business :: Financial",
|
|
29
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
30
|
+
]
|
|
31
|
+
dependencies = [
|
|
32
|
+
"tushare>=1.2.0",
|
|
33
|
+
"pandas>=1.0.0",
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
[project.urls]
|
|
37
|
+
Homepage = "https://github.com/yourusername/tinyshare"
|
|
38
|
+
Repository = "https://github.com/yourusername/tinyshare.git"
|
|
39
|
+
Issues = "https://github.com/yourusername/tinyshare/issues"
|
tinyshare-0.1.0/setup.py
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
|
4
|
+
long_description = fh.read()
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name="tinyshare",
|
|
8
|
+
version="0.1.0",
|
|
9
|
+
author="Your Name",
|
|
10
|
+
author_email="your.email@example.com",
|
|
11
|
+
description="A lightweight wrapper for tushare financial data API",
|
|
12
|
+
long_description=long_description,
|
|
13
|
+
long_description_content_type="text/markdown",
|
|
14
|
+
url="https://github.com/yourusername/tinyshare",
|
|
15
|
+
packages=find_packages(),
|
|
16
|
+
classifiers=[
|
|
17
|
+
"Development Status :: 3 - Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Intended Audience :: Financial and Insurance Industry",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
"Operating System :: OS Independent",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Programming Language :: Python :: 3.7",
|
|
24
|
+
"Programming Language :: Python :: 3.8",
|
|
25
|
+
"Programming Language :: Python :: 3.9",
|
|
26
|
+
"Programming Language :: Python :: 3.10",
|
|
27
|
+
"Programming Language :: Python :: 3.11",
|
|
28
|
+
"Topic :: Office/Business :: Financial",
|
|
29
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
30
|
+
],
|
|
31
|
+
python_requires=">=3.7",
|
|
32
|
+
install_requires=[
|
|
33
|
+
"tushare>=1.2.0",
|
|
34
|
+
"pandas>=1.0.0",
|
|
35
|
+
],
|
|
36
|
+
keywords="finance, stock, data, tushare, api",
|
|
37
|
+
)
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
"""
|
|
2
|
+
TinyShare - A lightweight wrapper for tushare financial data API
|
|
3
|
+
|
|
4
|
+
This package provides a drop-in replacement for tushare with additional
|
|
5
|
+
features and optimizations while maintaining 100% API compatibility.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import tushare as _tushare
|
|
9
|
+
import functools
|
|
10
|
+
import logging
|
|
11
|
+
from typing import Any, Optional
|
|
12
|
+
|
|
13
|
+
__version__ = "0.1.0"
|
|
14
|
+
__author__ = "Your Name"
|
|
15
|
+
|
|
16
|
+
# Set up logging
|
|
17
|
+
logger = logging.getLogger(__name__)
|
|
18
|
+
|
|
19
|
+
# Global token storage
|
|
20
|
+
_token = None
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def set_token(token: str) -> None:
|
|
24
|
+
"""
|
|
25
|
+
Set the tushare API token.
|
|
26
|
+
|
|
27
|
+
Args:
|
|
28
|
+
token (str): Your tushare API token
|
|
29
|
+
"""
|
|
30
|
+
global _token
|
|
31
|
+
_token = token
|
|
32
|
+
_tushare.set_token(token)
|
|
33
|
+
logger.info("Token set successfully")
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def get_token() -> Optional[str]:
|
|
37
|
+
"""
|
|
38
|
+
Get the current tushare API token.
|
|
39
|
+
|
|
40
|
+
Returns:
|
|
41
|
+
str or None: Current token if set, None otherwise
|
|
42
|
+
"""
|
|
43
|
+
return _token
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
def pro_api(token: Optional[str] = None, timeout: int = 30) -> Any:
|
|
47
|
+
"""
|
|
48
|
+
Initialize tushare pro API client.
|
|
49
|
+
|
|
50
|
+
Args:
|
|
51
|
+
token (str, optional): API token. If not provided, uses globally set token.
|
|
52
|
+
timeout (int): Request timeout in seconds. Defaults to 30.
|
|
53
|
+
|
|
54
|
+
Returns:
|
|
55
|
+
TuShare Pro API client instance
|
|
56
|
+
"""
|
|
57
|
+
if token:
|
|
58
|
+
set_token(token)
|
|
59
|
+
elif not _token:
|
|
60
|
+
raise ValueError("Token not set. Please call set_token() first or provide token parameter.")
|
|
61
|
+
|
|
62
|
+
try:
|
|
63
|
+
client = _tushare.pro_api(token=token, timeout=timeout)
|
|
64
|
+
logger.info("Pro API client initialized successfully")
|
|
65
|
+
return client
|
|
66
|
+
except Exception as e:
|
|
67
|
+
logger.error(f"Failed to initialize pro API client: {e}")
|
|
68
|
+
raise
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
# Proxy all other tushare functions and attributes
|
|
72
|
+
def __getattr__(name: str) -> Any:
|
|
73
|
+
"""
|
|
74
|
+
Proxy all tushare attributes and functions.
|
|
75
|
+
|
|
76
|
+
This allows tinyshare to act as a complete drop-in replacement for tushare
|
|
77
|
+
while maintaining the ability to add custom functionality.
|
|
78
|
+
"""
|
|
79
|
+
if hasattr(_tushare, name):
|
|
80
|
+
attr = getattr(_tushare, name)
|
|
81
|
+
|
|
82
|
+
# If it's a callable, wrap it with logging
|
|
83
|
+
if callable(attr):
|
|
84
|
+
@functools.wraps(attr)
|
|
85
|
+
def wrapper(*args, **kwargs):
|
|
86
|
+
logger.debug(f"Calling tushare.{name} with args={args}, kwargs={kwargs}")
|
|
87
|
+
try:
|
|
88
|
+
result = attr(*args, **kwargs)
|
|
89
|
+
logger.debug(f"tushare.{name} completed successfully")
|
|
90
|
+
return result
|
|
91
|
+
except Exception as e:
|
|
92
|
+
logger.error(f"Error in tushare.{name}: {e}")
|
|
93
|
+
raise
|
|
94
|
+
return wrapper
|
|
95
|
+
else:
|
|
96
|
+
return attr
|
|
97
|
+
else:
|
|
98
|
+
raise AttributeError(f"module 'tinyshare' has no attribute '{name}'")
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
# Export commonly used functions directly
|
|
102
|
+
from tushare import get_hist_data, get_tick_data, get_today_all, get_realtime_quotes
|
|
103
|
+
|
|
104
|
+
# Make sure we export the main functions
|
|
105
|
+
__all__ = [
|
|
106
|
+
'set_token',
|
|
107
|
+
'get_token',
|
|
108
|
+
'pro_api',
|
|
109
|
+
'get_hist_data',
|
|
110
|
+
'get_tick_data',
|
|
111
|
+
'get_today_all',
|
|
112
|
+
'get_realtime_quotes',
|
|
113
|
+
'__version__'
|
|
114
|
+
]
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tinyshare
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A lightweight wrapper for tushare financial data API
|
|
5
|
+
Home-page: https://github.com/yourusername/tinyshare
|
|
6
|
+
Author: Your Name
|
|
7
|
+
Author-email: Your Name <your.email@example.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Homepage, https://github.com/yourusername/tinyshare
|
|
10
|
+
Project-URL: Repository, https://github.com/yourusername/tinyshare.git
|
|
11
|
+
Project-URL: Issues, https://github.com/yourusername/tinyshare/issues
|
|
12
|
+
Keywords: finance,stock,data,tushare,api
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
+
Classifier: Topic :: Office/Business :: Financial
|
|
25
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
26
|
+
Requires-Python: >=3.7
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Requires-Dist: tushare>=1.2.0
|
|
30
|
+
Requires-Dist: pandas>=1.0.0
|
|
31
|
+
|
|
32
|
+
# TinyShare
|
|
33
|
+
|
|
34
|
+
A lightweight wrapper for tushare financial data API that provides the exact same interface as tushare but with additional features and optimizations.
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install tinyshare
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Usage
|
|
43
|
+
|
|
44
|
+
TinyShare provides the exact same API as tushare, so you can simply replace your import statement:
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
# Instead of: import tushare as ts
|
|
48
|
+
import tinyshare as ts
|
|
49
|
+
|
|
50
|
+
# Set your token
|
|
51
|
+
ts.set_token('your_tushare_token_here')
|
|
52
|
+
pro = ts.pro_api()
|
|
53
|
+
|
|
54
|
+
# Get index daily data
|
|
55
|
+
df = pro.index_daily(
|
|
56
|
+
ts_code='000001.SH',
|
|
57
|
+
start_date='20250621',
|
|
58
|
+
end_date='20250628'
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
print(df)
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Features
|
|
65
|
+
|
|
66
|
+
- **100% API Compatible**: Drop-in replacement for tushare
|
|
67
|
+
- **Enhanced Error Handling**: Better error messages and debugging
|
|
68
|
+
- **Performance Optimizations**: Caching and request optimization
|
|
69
|
+
- **Easy Migration**: Simply change your import statement
|
|
70
|
+
|
|
71
|
+
## Requirements
|
|
72
|
+
|
|
73
|
+
- Python 3.7+
|
|
74
|
+
- tushare>=1.2.0
|
|
75
|
+
- pandas>=1.0.0
|
|
76
|
+
|
|
77
|
+
## License
|
|
78
|
+
|
|
79
|
+
MIT License
|
|
80
|
+
|
|
81
|
+
## Contributing
|
|
82
|
+
|
|
83
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
MANIFEST.in
|
|
3
|
+
README.md
|
|
4
|
+
pyproject.toml
|
|
5
|
+
requirements.txt
|
|
6
|
+
setup.py
|
|
7
|
+
tinyshare/__init__.py
|
|
8
|
+
tinyshare.egg-info/PKG-INFO
|
|
9
|
+
tinyshare.egg-info/SOURCES.txt
|
|
10
|
+
tinyshare.egg-info/dependency_links.txt
|
|
11
|
+
tinyshare.egg-info/requires.txt
|
|
12
|
+
tinyshare.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tinyshare
|