Skip to content

Commit

Permalink
DOCS-#3856: add dispatchers, parsers and factories public classes (#3857
Browse files Browse the repository at this point in the history
)

Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev committed Dec 16, 2021
1 parent 2f7da1f commit 6ca66db
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/flow/modin/core/execution/dispatching.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,9 @@ which in turn forwards this call to the actual implementation of ``read_csv``
``PandasOnRayIO.read_csv``. The result of ``modin.pandas.read_csv`` will return a high-level Modin
DataFrame with the appropriate `QueryCompiler` bound to it, which is responsible for
dispatching all of the further function calls.

Public API
''''''''''

.. automodule:: modin.core.execution.dispatching.factories.factories
:members:
6 changes: 6 additions & 0 deletions docs/flow/modin/core/io/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ classes for reading files of different formats.

* ``sql_dispatcher.py`` - class for reading SQL queries or database tables.

Public API
''''''''''

.. automodule:: modin.core.io
:members:

Handling ``skiprows`` Parameter
'''''''''''''''''''''''''''''''

Expand Down
6 changes: 6 additions & 0 deletions docs/flow/modin/core/storage_formats/pandas/parsers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,9 @@ be returned.
.. note::
If you are interested in the data parsing mechanism implementation details, please refer
to the source code documentation.

Public API
''''''''''

.. automodule:: modin.core.storage_formats.pandas.parsers
:members:

0 comments on commit 6ca66db

Please sign in to comment.