Skip to content

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thf24 committed Feb 22, 2023
1 parent a944a3d commit 4078dc6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# This is also defined in simfin/__init__.py and must be
# updated in both places.
MY_VERSION = '0.8.4'
MY_VERSION = '0.9.0'

setup(
name='simfin',
Expand Down
2 changes: 1 addition & 1 deletion simfin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This is also defined in setup.py and must be updated in both places.
__version__ = "0.8.4"
__version__ = "0.9.0"

# Expose the following as top-level imports.

Expand Down
3 changes: 1 addition & 2 deletions simfin/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,8 @@ def _url_dataset(dataset, market=None, variant=None):
if market is not None:
args += '&market=' + market


# Base URL for the bulk-download API on the SimFin server.
base_url = 'https://backend.simfin.com/api/bulk?'
base_url = 'https://backend.simfin.com/api/bulk-download?'

# Combine base URL and arguments.
url = base_url + args
Expand Down
4 changes: 2 additions & 2 deletions simfin/names_extra.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
SPS = SALES_PER_SHARE = 'Sales Per Share'

#: Net Income / Number of Shares.
EPS_BASIC = EPS = EARNINGS_PER_SHARE = 'Earnings per Share, Basic'
EPS_BASIC = EPS = EARNINGS_PER_SHARE = 'Earnings Per Share, Basic'

#: Net Income / Number of Shares.
EPS_DILUTED = 'Earnings per Share, Diluted'
EPS_DILUTED = 'Earnings Per Share, Diluted'

#: Total Equity / Number of Shares.
EQ_PS = EQUITY_PER_SHARE = BV_PS = BOOK_VALUE_PER_SHARE = 'Equity Per Share'
Expand Down

0 comments on commit 4078dc6

Please sign in to comment.