langchain/tests/integration_tests/examples
Matt Robinson 0498dad562
feat: enable UnstructuredEmailLoader to process attachments (#6977)
### Summary

Updates `UnstructuredEmailLoader` so that it can process attachments in
addition to the e-mail content. The loader will process attachments if
the `process_attachments` kwarg is passed when the loader is
instantiated.

### Testing

```python

file_path = "fake-email-attachment.eml"
loader = UnstructuredEmailLoader(
    file_path, mode="elements", process_attachments=True
)
docs = loader.load()
docs[-1]
```

### Reviewers

-  @rlancemartin 
-  @eyurtsev
- @hwchase17
2023-07-01 06:09:26 -07:00
..
brandfetch-brandfetch-2.0.0-resolved.json Add support for passing headers and search params to openai openapi chain (#6782) 2023-06-27 09:09:03 -07:00
default-encoding.py Add PythonLoader which auto-detects encoding of Python files (#3311) 2023-04-21 10:47:57 -07:00
example-utf8.html Add ability to pass kwargs to loader classes in DirectoryLoader, add ability to modify encoding and BeautifulSoup behaviour in BSHTMLLoader (#2275) 2023-04-01 12:48:27 -07:00
example.html Add HTML document_loader that includes page title metadata (#1720) 2023-03-16 21:47:17 -07:00
example.json JSON loader (#4067) 2023-05-05 14:48:13 -07:00
example.mht Added a MHTML document loader (#6311) 2023-06-25 13:12:08 -07:00
facebook_chat.json Refactor TelegramChatLoader and FacebookChatLoader classes and add tests (#3863) 2023-05-03 15:59:19 -07:00
factbook.xml feat: Add UnstructuredXMLLoader for .xml files (#5955) 2023-06-10 16:24:42 -07:00
fake-email-attachment.eml feat: enable UnstructuredEmailLoader to process attachments (#6977) 2023-07-01 06:09:26 -07:00
fake.odt feat: add loader for open office odt files (#4405) 2023-05-10 01:37:17 -07:00
hello_world.js feat (documents): add a source code loader based on AST manipulation (#6486) 2023-06-27 15:58:47 -07:00
hello_world.py feat (documents): add a source code loader based on AST manipulation (#6486) 2023-06-27 15:58:47 -07:00
hello.msg Harrison/msg files (#2375) 2023-04-04 06:48:34 -07:00
hello.pdf Harrison/format agent instructions (#973) 2023-02-10 10:07:26 -08:00
layout-parser-paper.pdf Harrison/remote paths pdf (#1544) 2023-03-08 20:53:37 -08:00
non-utf8-encoding.py Add PythonLoader which auto-detects encoding of Python files (#3311) 2023-04-21 10:47:57 -07:00
README.org feat: Add UnstructuredOrgModeLoader (#6842) 2023-06-27 16:34:17 -07:00
README.rst feat: Add UnstructuredRSTLoader (#6594) 2023-06-25 12:41:57 -07:00
sitemap.xml Harrison/sitemap local (#4704) 2023-05-14 22:04:38 -07:00
slack_export.zip Add Slack Directory Loader (#2841) 2023-04-13 21:31:59 -07:00
stanley-cups.csv feat: Add UnstructuredCSVLoader for CSV files (#5844) 2023-06-07 19:18:01 -07:00
stanley-cups.xlsx feat: add UnstructuredExcelLoader for .xlsx and .xls files (#5617) 2023-06-03 12:44:12 -07:00
whatsapp_chat.txt Enhancement : Ignore deleted messages and media in WhatsAppChatLoader (#6839) 2023-06-27 16:36:55 -07:00

Example Docs
------------

The sample docs directory contains the following files:

-  ``example-10k.html`` - A 10-K SEC filing in HTML format
-  ``layout-parser-paper.pdf`` - A PDF copy of the layout parser paper
-  ``factbook.xml``/``factbook.xsl`` - Example XML/XLS files that you
   can use to test stylesheets

These documents can be used to test out the parsers in the library. In
addition, here are instructions for pulling in some sample docs that are
too big to store in the repo.

XBRL 10-K
^^^^^^^^^

You can get an example 10-K in inline XBRL format using the following
``curl``. Note, you need to have the user agent set in the header or the
SEC site will reject your request.

.. code:: bash

   curl -O \
     -A '${organization} ${email}'
     https://www.sec.gov/Archives/edgar/data/311094/000117184321001344/0001171843-21-001344.txt

You can parse this document using the HTML parser.