fenix 1.0.0__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.
- fenix/__init__.py +82 -0
- fenix/aliceblue.py +2798 -0
- fenix/angelone.py +2494 -0
- fenix/base/__init__.py +10 -0
- fenix/base/constants.py +207 -0
- fenix/base/errors.py +32 -0
- fenix/base/exchange.py +496 -0
- fenix/choice.py +1996 -0
- fenix/finvasia.py +2603 -0
- fenix/fivepaisa.py +1790 -0
- fenix/fyers.py +2563 -0
- fenix/iifl.py +2007 -0
- fenix/kotak.py +1021 -0
- fenix/kotakneo.py +2119 -0
- fenix/kunjee.py +25 -0
- fenix/mastertrust.py +2659 -0
- fenix/motilaloswal.py +25 -0
- fenix/paper.py +859 -0
- fenix/symphony.py +1981 -0
- fenix/upstox.py +1947 -0
- fenix/vpc.py +25 -0
- fenix/zerodha.py +2065 -0
- fenix-1.0.0.dist-info/LICENSE +674 -0
- fenix-1.0.0.dist-info/METADATA +872 -0
- fenix-1.0.0.dist-info/RECORD +27 -0
- fenix-1.0.0.dist-info/WHEEL +5 -0
- fenix-1.0.0.dist-info/top_level.txt +1 -0
fenix/__init__.py
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# ------------------------------------------------------------------------------
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
__version__ = "1.0.0"
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
# ------------------------------------------------------------------------------
|
|
8
|
+
|
|
9
|
+
from fenix.base.exchange import Exchange # noqa: F401
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
from fenix.base import errors # noqa: F401
|
|
13
|
+
from fenix.base.errors import InputError # noqa: F401
|
|
14
|
+
from fenix.base.errors import ResponseError # noqa: F401
|
|
15
|
+
from fenix.base.errors import TokenDownloadError # noqa: F401
|
|
16
|
+
from fenix.base.errors import RequestTimeout # noqa: F401
|
|
17
|
+
from fenix.base.errors import NetworkError # noqa: F401
|
|
18
|
+
from fenix.base.errors import BrokerError # noqa: F401
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
from fenix.base import constants # noqa: F401
|
|
22
|
+
from fenix.base.constants import Side # noqa: F401
|
|
23
|
+
from fenix.base.constants import Root # noqa: F401
|
|
24
|
+
from fenix.base.constants import WeeklyExpiry # noqa: F401
|
|
25
|
+
from fenix.base.constants import OrderType # noqa: F401
|
|
26
|
+
from fenix.base.constants import ExchangeCode # noqa: F401
|
|
27
|
+
from fenix.base.constants import Product # noqa: F401
|
|
28
|
+
from fenix.base.constants import Validity # noqa: F401
|
|
29
|
+
from fenix.base.constants import Variety # noqa: F401
|
|
30
|
+
from fenix.base.constants import Status # noqa: F401
|
|
31
|
+
from fenix.base.constants import Order # noqa: F401
|
|
32
|
+
from fenix.base.constants import Position # noqa: F401
|
|
33
|
+
from fenix.base.constants import Profile # noqa: F401
|
|
34
|
+
from fenix.base.constants import UniqueID # noqa: F401
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
from fenix.aliceblue import aliceblue # noqa :F401
|
|
38
|
+
from fenix.angelone import angelone # noqa :F401
|
|
39
|
+
from fenix.choice import choice # noqa :F401
|
|
40
|
+
from fenix.finvasia import finvasia # noqa :F401
|
|
41
|
+
from fenix.fivepaisa import fivepaisa # noqa :F401
|
|
42
|
+
from fenix.fyers import fyers # noqa :F401
|
|
43
|
+
from fenix.iifl import iifl # noqa :F401
|
|
44
|
+
from fenix.kotak import kotak # noqa :F401
|
|
45
|
+
from fenix.kotakneo import kotakneo # noqa :F401
|
|
46
|
+
from fenix.kunjee import kunjee # noqa :F401
|
|
47
|
+
from fenix.mastertrust import mastertrust # noqa :F401
|
|
48
|
+
from fenix.motilaloswal import motilaloswal # noqa :F401
|
|
49
|
+
from fenix.paper import paper # noqa :F401
|
|
50
|
+
from fenix.symphony import symphony # noqa :F401
|
|
51
|
+
from fenix.upstox import upstox # noqa :F401
|
|
52
|
+
from fenix.vpc import vpc # noqa :F401
|
|
53
|
+
from fenix.zerodha import zerodha # noqa :F401
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
exchanges = [
|
|
57
|
+
"aliceblue",
|
|
58
|
+
"angelone",
|
|
59
|
+
"choice",
|
|
60
|
+
"finvasia",
|
|
61
|
+
"fivepaisa",
|
|
62
|
+
"fyers",
|
|
63
|
+
"iifl",
|
|
64
|
+
"kotak",
|
|
65
|
+
"kotakneo",
|
|
66
|
+
"kunjee",
|
|
67
|
+
"mastertrust",
|
|
68
|
+
"motilaloswal",
|
|
69
|
+
"paper",
|
|
70
|
+
"symphony",
|
|
71
|
+
"upstox",
|
|
72
|
+
"vpc",
|
|
73
|
+
"zerodha",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
base = [
|
|
77
|
+
"Exchange",
|
|
78
|
+
"exchanges",
|
|
79
|
+
"constants",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
__all__ = base + errors.__all__ + exchanges + constants.__all__
|