forked from eyra/feldspar
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed documentation errors, move platforms from api to own section, c…
…hanged left toc so it makes more sense, added documentation on how to use standard scripts
- Loading branch information
Showing
9 changed files
with
100 additions
and
37 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
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 @@ | ||
API Documentation | ||
============================= | ||
API Reference | ||
============= | ||
|
||
.. toctree:: | ||
:maxdepth: 3 | ||
|
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 |
---|---|---|
|
@@ -32,3 +32,9 @@ | |
|
||
html_theme = 'piccolo_theme' | ||
html_static_path = ['_static'] | ||
|
||
html_sidebars = { | ||
'**': [ | ||
'globaltoc.html', | ||
] | ||
} |
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,32 @@ | ||
Platform Documentation | ||
============================= | ||
|
||
For various platforms we provide default extraction scripts, so you do not have to invent the wheel. | ||
|
||
Freel free to use the extraction scripts as you see fit. | ||
|
||
In order to use the scripts open the file `src/framework/processing/py/port/main.py` and change this line: | ||
|
||
.. code-block:: python | ||
from port.script import process | ||
to: | ||
|
||
.. code-block:: python | ||
#from port.script import process | ||
# Change to (in this case the standard script for instagram will be used): | ||
from port.platforms.instagram import process | ||
Available platforms | ||
------------------- | ||
|
||
.. automodule:: port.platforms.chatgpt | ||
|
||
|
||
--------- | ||
|
||
.. automodule:: port.platforms.instagram |
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