-
-
Notifications
You must be signed in to change notification settings - Fork 95
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 #109 from lit26/fix/doc
Fix doc
- Loading branch information
Showing
25 changed files
with
103 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: "2" | ||
|
||
build: | ||
os: "ubuntu-22.04" | ||
tools: | ||
python: "3.10" | ||
|
||
python: | ||
install: | ||
- requirements: requirements-doc.txt | ||
|
||
sphinx: | ||
configuration: docs/source/conf.py |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,10 @@ | ||
News | ||
************************** | ||
|
||
Getting news. | ||
|
||
.. automodule:: finvizfinance.news | ||
:members: | ||
|
||
|
||
|
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,10 @@ | ||
Quote | ||
************************** | ||
|
||
Getting stock information. | ||
|
||
.. automodule:: finvizfinance.quote | ||
:members: | ||
|
||
|
||
|
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,54 @@ | ||
Screener | ||
************************** | ||
|
||
Getting screener information. | ||
|
||
Overview | ||
============= | ||
|
||
.. automodule:: finvizfinance.screener.overview | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
Valuation | ||
============= | ||
|
||
.. automodule:: finvizfinance.screener.valuation | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
Financial | ||
============= | ||
|
||
.. automodule:: finvizfinance.screener.financial | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
Ownership | ||
============= | ||
|
||
.. automodule:: finvizfinance.screener.ownership | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
Performance | ||
============= | ||
|
||
.. automodule:: finvizfinance.screener.performance | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
Technical | ||
============= | ||
|
||
.. automodule:: finvizfinance.screener.technical | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
Ticker | ||
============= | ||
|
||
.. automodule:: finvizfinance.screener.ticker | ||
:show-inheritance: | ||
:inherited-members: | ||
|
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,6 +1,6 @@ | ||
""" | ||
.. module:: group.overview | ||
:synopsis: group overview table. | ||
.. module:: group.base | ||
:synopsis: group base module. | ||
.. moduleauthor:: Tianning Li <[email protected]> | ||
""" | ||
|
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,5 @@ | ||
""" | ||
.. module:: finvizfinance | ||
.. module:: quote | ||
:synopsis: individual ticker. | ||
.. moduleauthor:: Tianning Li <[email protected]> | ||
|
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,6 +1,6 @@ | ||
""" | ||
.. module:: screen.overview | ||
:synopsis: screen overview table. | ||
.. module:: screener.base | ||
:synopsis: screen base module. | ||
.. moduleauthor:: Tianning Li <[email protected]> | ||
|
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,5 @@ | ||
""" | ||
.. module:: screen.custom | ||
.. module:: screener.custom | ||
:synopsis: screen custom table. | ||
.. moduleauthor:: Tianning Li <[email protected]> | ||
|
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,5 @@ | ||
""" | ||
.. module:: screen.financial | ||
.. module:: screener.financial | ||
:synopsis: screen financial table. | ||
.. moduleauthor:: Tianning Li <[email protected]> | ||
|
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,5 @@ | ||
""" | ||
.. module:: screen.overview | ||
.. module:: screener.overview | ||
:synopsis: screen overview table. | ||
.. moduleauthor:: Tianning Li <[email protected]> | ||
|
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,5 @@ | ||
""" | ||
.. module:: screen.ownership | ||
.. module:: screener.ownership | ||
:synopsis: screen ownership table. | ||
.. moduleauthor:: Tianning Li <[email protected]> | ||
|
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,5 @@ | ||
""" | ||
.. module:: screen.performance | ||
.. module:: screener.performance | ||
:synopsis: screen performance table. | ||
.. moduleauthor:: Tianning Li <[email protected]> | ||
|
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,5 @@ | ||
""" | ||
.. module:: screen.technical | ||
.. module:: screener.technical | ||
:synopsis: screen technical table. | ||
.. moduleauthor:: Tianning Li <[email protected]> | ||
|
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,5 @@ | ||
""" | ||
.. module:: screen.ticker | ||
.. module:: screener.ticker | ||
:synopsis: screen ticker table. | ||
.. moduleauthor:: Tianning Li <[email protected]> | ||
|
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,5 @@ | ||
""" | ||
.. module:: screen.valuation | ||
.. module:: screener.valuation | ||
:synopsis: screen valuation table. | ||
.. moduleauthor:: Tianning Li <[email protected]> | ||
|