Trader-AngleOne 1.4__tar.gz → 1.5__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.
- {trader_angleone-1.4 → trader_angleone-1.5}/PKG-INFO +6 -1
- {trader_angleone-1.4 → trader_angleone-1.5}/Trader_AngleOne.egg-info/PKG-INFO +6 -1
- trader_angleone-1.5/Trader_AngleOne.egg-info/requires.txt +7 -0
- {trader_angleone-1.4 → trader_angleone-1.5}/pyproject.toml +6 -2
- trader_angleone-1.4/Trader_AngleOne.egg-info/requires.txt +0 -2
- {trader_angleone-1.4 → trader_angleone-1.5}/LICENSE +0 -0
- {trader_angleone-1.4 → trader_angleone-1.5}/README.md +0 -0
- {trader_angleone-1.4 → trader_angleone-1.5}/Trader_AngleOne/__init__.py +0 -0
- {trader_angleone-1.4 → trader_angleone-1.5}/Trader_AngleOne/main.py +0 -0
- {trader_angleone-1.4 → trader_angleone-1.5}/Trader_AngleOne/map_stock.py +0 -0
- {trader_angleone-1.4 → trader_angleone-1.5}/Trader_AngleOne.egg-info/SOURCES.txt +0 -0
- {trader_angleone-1.4 → trader_angleone-1.5}/Trader_AngleOne.egg-info/dependency_links.txt +0 -0
- {trader_angleone-1.4 → trader_angleone-1.5}/Trader_AngleOne.egg-info/top_level.txt +0 -0
- {trader_angleone-1.4 → trader_angleone-1.5}/setup.cfg +0 -0
- {trader_angleone-1.4 → trader_angleone-1.5}/setup.py +0 -0
- {trader_angleone-1.4 → trader_angleone-1.5}/tests/test_code.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Trader_AngleOne
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.5
|
|
4
4
|
Summary: A lightweight, efficient Python wrapper for fetching historical equity market data via Angel One SmartAPI.
|
|
5
5
|
Author-email: ROHIT GUPTA <everything108rp@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -15,6 +15,11 @@ Description-Content-Type: text/markdown
|
|
|
15
15
|
License-File: LICENSE
|
|
16
16
|
Requires-Dist: smartapi-python
|
|
17
17
|
Requires-Dist: pandas
|
|
18
|
+
Requires-Dist: pyotp
|
|
19
|
+
Requires-Dist: logzero
|
|
20
|
+
Requires-Dist: websocket
|
|
21
|
+
Requires-Dist: websocket-client
|
|
22
|
+
Requires-Dist: numpy
|
|
18
23
|
Dynamic: license-file
|
|
19
24
|
|
|
20
25
|
# Trader_AngleOne
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Trader_AngleOne
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.5
|
|
4
4
|
Summary: A lightweight, efficient Python wrapper for fetching historical equity market data via Angel One SmartAPI.
|
|
5
5
|
Author-email: ROHIT GUPTA <everything108rp@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -15,6 +15,11 @@ Description-Content-Type: text/markdown
|
|
|
15
15
|
License-File: LICENSE
|
|
16
16
|
Requires-Dist: smartapi-python
|
|
17
17
|
Requires-Dist: pandas
|
|
18
|
+
Requires-Dist: pyotp
|
|
19
|
+
Requires-Dist: logzero
|
|
20
|
+
Requires-Dist: websocket
|
|
21
|
+
Requires-Dist: websocket-client
|
|
22
|
+
Requires-Dist: numpy
|
|
18
23
|
Dynamic: license-file
|
|
19
24
|
|
|
20
25
|
# Trader_AngleOne
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "Trader_AngleOne"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.5"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="ROHIT GUPTA", email="everything108rp@gmail.com" },
|
|
10
10
|
]
|
|
@@ -21,7 +21,11 @@ classifiers = [
|
|
|
21
21
|
dependencies = [
|
|
22
22
|
"smartapi-python", # This ensures Angel One's official underlying package installs automatically
|
|
23
23
|
"pandas",
|
|
24
|
-
|
|
24
|
+
"pyotp",
|
|
25
|
+
"logzero",
|
|
26
|
+
"websocket",
|
|
27
|
+
"websocket-client",
|
|
28
|
+
"numpy",
|
|
25
29
|
]
|
|
26
30
|
|
|
27
31
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|