Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Aug 13, 2018
1 parent ed47686 commit c9322e8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = 'v0.0.8'
version = 'v0.0.9'
# The full version, including alpha/beta/rc tags.
release = 'v0.0.8'
release = 'v0.0.9'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyEX/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from .marketdata.http import tops, topsDF, last, lastDF, hist, histDF, deep, deepDF, book as topsBook, bookDF as topsBookDF, trades, tradesDF, systemEvent, systemEventDF, tradingStatus, tradingStatusDF, opHaltStatus, opHaltStatusDF, ssrStatus, ssrStatusDF, securityEvent, securityEventDF, tradeBreak, tradeBreakDF, auction, auctionDF
from .marketdata.ws import *

__version__ = '0.0.8'
__version__ = '0.0.9'
4 changes: 3 additions & 1 deletion pyEX/stocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ def stockStats(symbol):

def stockStatsDF(symbol):
'''https://iextrading.com/developer/docs/#key-stats'''
return pd.io.json.json_normalize(stockStats(symbol))
df = pd.io.json.json_normalize(stockStats(symbol))
_reindex(df, 'symbol')
return df


def list(option='mostactive'):
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

setup(
name='pyEX',
version='0.0.8',
version='0.0.9',
description='Rest API to IEX',
long_description=long_description,
url='https://github.com/timkpaine/pyEX',
download_url='https://github.com/timkpaine/pyEX/archive/v0.0.8.tar.gz',
download_url='https://github.com/timkpaine/pyEX/archive/v0.0.9.tar.gz',
author='Tim Paine',
author_email='timothy.k.paine@gmail.com',
license='Apache 2.0',
Expand Down

0 comments on commit c9322e8

Please sign in to comment.