Skip to content

Commit

Permalink
Merge pull request #509 from krishnavelu/develop
Browse files Browse the repository at this point in the history
Develop -> master for 2.0.4
  • Loading branch information
krishnavelu authored Jul 26, 2023
2 parents 4181b1f + 2dcb4bd commit c6cc629
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions alice_blue/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .alice_blue import AliceBlue, TransactionType, OrderType, ProductType, LiveFeedType, Instrument, HistoricalDataType
__all__ = ['AliceBlue', 'TransactionType', 'OrderType', 'ProductType', 'LiveFeedType', 'Instrument', 'HistoricalDataType']
from .alice_blue import AliceBlue, TransactionType, OrderType, ProductType, LiveFeedType, Instrument, HistoricalDataType, CryptoJsAES
__all__ = ['AliceBlue', 'TransactionType', 'OrderType', 'ProductType', 'LiveFeedType', 'Instrument', 'HistoricalDataType', 'CryptoJsAES']
2 changes: 1 addition & 1 deletion alice_blue/alice_blue.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class AliceBlue:
""" AliceBlue Class for all operations related to AliceBlue Server"""

# URLs
host = "https://a3.aliceblueonline.com/rest/AliceBlueAPIService"
host = "https://ant.aliceblueonline.com/rest/AliceBlueAPIService"
__urls = { "webLogin" : f"{host}/customer/webLogin",
"twoFA" : f"{host}/sso/validAnswer",
"sessionID" : f"{host}/sso/getUserDetails",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
setuptools.setup(
name = 'alice_blue',
packages=setuptools.find_packages(),
version = '2.0.3',
version = '2.0.4',
include_package_data=True,
description = 'Official Python library for Alice Blue APIs',
long_description=long_description,
Expand Down

0 comments on commit c6cc629

Please sign in to comment.