forked from deanmalmgren/textract
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
committing python_package.rst to repo to fix problems on readthedocs …
…(which doesnt run make html to build the documentation). fixes deanmalmgren#11.
- Loading branch information
Dean Malmgren
committed
Jul 30, 2014
1 parent
da09661
commit ef561b6
Showing
4 changed files
with
122 additions
and
6 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 |
---|---|---|
|
@@ -51,7 +51,6 @@ coverage.xml | |
# Sphinx documentation | ||
docs/build/ | ||
docs/textract/ | ||
docs/python_package.rst | ||
|
||
# vagrant | ||
.vagrant |
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,19 @@ | ||
.. _python-package: | ||
|
||
Python package | ||
============== | ||
|
||
This package is organized to make it as easy as possible to add new | ||
extensions and support the continued growth and coverage of | ||
textract. For almost all applications, you will just have to do | ||
something like this:: | ||
|
||
import textract | ||
text = textract.process('path/to/file.extension') | ||
|
||
to obtain text from a document. | ||
|
||
For completeness, we also include here the documentation for specific | ||
file extension parsers as well as a few other essential bits in the | ||
``textract.exceptions`` and ``textract.shell`` module. | ||
|
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,102 @@ | ||
.. _python-package: | ||
|
||
Python package | ||
============== | ||
|
||
This package is organized to make it as easy as possible to add new | ||
extensions and support the continued growth and coverage of | ||
textract. For almost all applications, you will just have to do | ||
something like this:: | ||
|
||
import textract | ||
text = textract.process('path/to/file.extension') | ||
|
||
to obtain text from a document. | ||
|
||
For completeness, we also include here the documentation for specific | ||
file extension parsers as well as a few other essential bits in the | ||
``textract.exceptions`` and ``textract.shell`` module. | ||
|
||
textract.parsers.doc_parser module | ||
---------------------------------- | ||
|
||
.. automodule:: textract.parsers.doc_parser | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
textract.parsers.docx_parser module | ||
----------------------------------- | ||
|
||
.. automodule:: textract.parsers.docx_parser | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
textract.parsers.eml_parser module | ||
---------------------------------- | ||
|
||
.. automodule:: textract.parsers.eml_parser | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
textract.parsers.html_parser module | ||
----------------------------------- | ||
|
||
.. automodule:: textract.parsers.html_parser | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
textract.parsers.json_parser module | ||
----------------------------------- | ||
|
||
.. automodule:: textract.parsers.json_parser | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
textract.parsers.pdf_parser module | ||
---------------------------------- | ||
|
||
.. automodule:: textract.parsers.pdf_parser | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
textract.parsers.pptx_parser module | ||
----------------------------------- | ||
|
||
.. automodule:: textract.parsers.pptx_parser | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
textract.parsers.txt_parser module | ||
---------------------------------- | ||
|
||
.. automodule:: textract.parsers.txt_parser | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
|
||
|
||
textract.exceptions module | ||
-------------------------- | ||
|
||
.. automodule:: textract.exceptions | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
textract.shell module | ||
--------------------- | ||
|
||
.. automodule:: textract.shell | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
|