-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from EVEprosper/v2-refactor
V2 refactor
- Loading branch information
Showing
37 changed files
with
1,933 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
[report] | ||
omit = prosper/warehouse/_version.py | ||
omit = | ||
prosper/datareader/_version.py | ||
prosper/datareader/__init__.py | ||
prosper/datareader/exceptions.py | ||
prosper/datareader/robinhood/__init__.py | ||
prosper/datareader/google/__init.py | ||
|
||
[paths] | ||
source = prosper/warehouse | ||
source = prosper/datareader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
======================= | ||
prosper.datareader.news | ||
======================= | ||
|
||
Fetching news feeds should be easy. These endpoints return dataframes with articles, links, and some metadata. These feeds save you from a few pitfalls. | ||
|
||
- Non-compliant JSON | ||
- Weird single-character identifiers | ||
- Strange tree-shaped feeds | ||
|
||
company_news_rh() | ||
----------------- | ||
|
||
``news_dataframe = news.company_news_rh('TICKER')`` | ||
|
||
Fetches articles from `Robinhood`_ for desired ticker. NOTE: ``page_limit`` may be needed for popular stocks. | ||
|
||
**NOTE**: Google datasources have been deprecated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.