fyers-apiv3 3.1.2__tar.gz → 3.1.3__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.
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/PKG-INFO +2 -2
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3/FyersWebsocket/map.json +1 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3.egg-info/PKG-INFO +2 -2
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/setup.py +2 -2
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/LICENSE.txt +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/README.md +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3/FyersWebsocket/__init__.py +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3/FyersWebsocket/data_ws.py +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3/FyersWebsocket/defines.py +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3/FyersWebsocket/order_ws.py +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3/__init__.py +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3/fyersModel.py +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3/fyers_logger.py +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3.egg-info/SOURCES.txt +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3.egg-info/dependency_links.txt +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3.egg-info/requires.txt +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/fyers_apiv3.egg-info/top_level.txt +0 -0
- {fyers_apiv3-3.1.2 → fyers_apiv3-3.1.3}/setup.cfg +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fyers_apiv3
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.3
|
|
4
4
|
Summary: Fyers trading APIs.
|
|
5
|
-
Home-page: https://github.com/FyersDev/fyers-api-
|
|
5
|
+
Home-page: https://github.com/FyersDev/fyers-api-sample-code/tree/sample_v3/v3/python
|
|
6
6
|
Author: Fyers-Tech
|
|
7
7
|
Author-email: support@fyers.in
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -127,6 +127,7 @@
|
|
|
127
127
|
"NSE:NIFTYGS10YR-INDEX": "Nifty GS 10Yr",
|
|
128
128
|
"NSE:NIFTYMIDCAP100-INDEX": "NIFTY MIDCAP 100",
|
|
129
129
|
"NSE:NIFTYNEXT50-INDEX": "Nifty Next 50",
|
|
130
|
+
"NSE:NIFTYNXT50-INDEX": "Nifty Next 50",
|
|
130
131
|
"NSE:NIFTYM150QLTY50-INDEX": "NIFTY M150 QLTY50",
|
|
131
132
|
"NSE:NIFTYSERVSECTOR-INDEX": "Nifty Serv Sector",
|
|
132
133
|
"NSE:NIFTYMIDSML400-INDEX": "NIFTY MIDSML 400",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fyers_apiv3
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.3
|
|
4
4
|
Summary: Fyers trading APIs.
|
|
5
|
-
Home-page: https://github.com/FyersDev/fyers-api-
|
|
5
|
+
Home-page: https://github.com/FyersDev/fyers-api-sample-code/tree/sample_v3/v3/python
|
|
6
6
|
Author: Fyers-Tech
|
|
7
7
|
Author-email: support@fyers.in
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -5,13 +5,13 @@ with open("README.md", "r") as fh:
|
|
|
5
5
|
|
|
6
6
|
setuptools.setup(
|
|
7
7
|
name='fyers_apiv3',
|
|
8
|
-
version='3.1.
|
|
8
|
+
version='3.1.3',
|
|
9
9
|
author="Fyers-Tech",
|
|
10
10
|
author_email="support@fyers.in",
|
|
11
11
|
description="Fyers trading APIs.",
|
|
12
12
|
long_description=long_description,
|
|
13
13
|
long_description_content_type="text/markdown",
|
|
14
|
-
url="https://github.com/FyersDev/fyers-api-
|
|
14
|
+
url="https://github.com/FyersDev/fyers-api-sample-code/tree/sample_v3/v3/python",
|
|
15
15
|
packages=setuptools.find_packages(),
|
|
16
16
|
package_data={
|
|
17
17
|
'fyers_apiv3': ['/Users/em743/Desktop/codebase/fyers-api-py/fyers_apiv3/FyersWebsocket/map.json']
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|