Files
langchain-python/langchain/document_loaders
Matt Robinson bcab894f4e feat: Add UnstructuredTSVLoader (#7367)
### Summary

Adds an `UnstructuredTSVLoader` for TSV files. Also updates the doc
strings for `UnstructuredCSV` and `UnstructuredExcel` loaders.

### Testing

```python
from langchain.document_loaders.tsv import UnstructuredTSVLoader

loader = UnstructuredTSVLoader(
    file_path="example_data/mlb_teams_2012.csv", mode="elements"
)
docs = loader.load()
```
2023-07-10 03:07:10 -04:00
..
2023-07-02 12:13:04 -07:00
2023-07-02 12:13:04 -07:00
2023-07-02 12:14:22 -07:00
2023-07-02 12:14:22 -07:00
2023-07-02 12:14:22 -07:00
2023-07-02 12:14:22 -07:00
2023-07-02 12:14:22 -07:00
2023-07-02 12:14:22 -07:00
2023-06-01 00:54:42 -07:00
2023-07-02 12:14:22 -07:00
2023-02-05 23:02:07 -08:00
2023-05-05 16:49:19 -07:00
2023-05-30 10:42:20 -07:00
2023-02-08 00:35:33 -08:00
2023-06-25 12:41:57 -07:00
2023-05-16 23:42:53 -07:00
2023-05-09 10:24:17 -04:00
2023-05-29 19:47:56 -07:00
2023-07-10 03:07:10 -04:00
2023-07-02 01:17:30 -06:00
2023-05-23 15:57:33 -07:00
2023-07-05 16:53:57 -07:00
2023-06-23 16:05:42 -07:00