This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: remove live API references (#155)
The API is no longer maintained.
- Loading branch information
Showing
1 changed file
with
3 additions
and
5 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 |
---|---|---|
|
@@ -9,8 +9,6 @@ | |
|
||
This repo implements a document pre-processing pipeline for SEC filings. Currently, the pipeline is capable of extracting narrative text from user-specified sections in 10-K, 10-Q, and S-1 filings. | ||
|
||
The API is hosted at `https://api.unstructured.io`. | ||
|
||
## Developer Quick Start | ||
|
||
* Using `pyenv` to manage virtualenv's is recommended | ||
|
@@ -40,7 +38,7 @@ the `sample-docs` folder, run: | |
|
||
``` | ||
curl -X 'POST' \ | ||
'https://api.unstructured.io/sec-filings/v0.2.1/section' \ | ||
'http://localhost:8000/sec-filings/v0.2.1/section' \ | ||
-H 'accept: application/json' \ | ||
-H 'Content-Type: multipart/form-data' \ | ||
-F '[email protected]' \ | ||
|
@@ -131,7 +129,7 @@ You can always replace the header `-H 'accept: application/json'` with `-H 'acce | |
|
||
``` | ||
curl -X 'POST' \ | ||
'https://api.unstructured.io/sec-filings/v0.2.1/section' \ | ||
'http://localhost:8000/sec-filings/v0.2.1/section' \ | ||
-H 'accept: text/csv' \ | ||
-H 'Content-Type: multipart/form-data' \ | ||
-F '[email protected]' \ | ||
|
@@ -146,7 +144,7 @@ In addition, you can add the form `-F 'output_schema=labelstudio'` if you want a | |
|
||
``` | ||
curl -X 'POST' \ | ||
'https://api.unstructured.io/sec-filings/v0.2.1/section' \ | ||
'http://localhost:8000/sec-filings/v0.2.1/section' \ | ||
-H 'accept: application/json' \ | ||
-H 'Content-Type: multipart/form-data' \ | ||
-F '[email protected]' \ | ||
|