Skip to content

Commit aad5496

Browse files
committed
2 parents 7862e1d + 5d9ecdd commit aad5496

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.MD

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ The the package has one class `IndustryDocsSearch` with two main methods of are:
1616
Basic usage looks like:
1717

1818
```
19-
import industryDocumentsWrapper as idw
19+
import industry_documents_wrapper as idw
2020
21-
wrapper = idw.IndustryDocsSearch()
22-
wrapper.query(q="industry:tobacco AND case:'State of North Carolina' AND collection:'JUUL labs Collection', n=100)
21+
wrapper = idw.ucsf_api.IndustryDocsSearch()
22+
wrapper.query(q="industry:tobacco AND case:'State of North Carolina' AND collection:'JUUL labs Collection', n=100")
2323
wrapper.save('query_results.json', format='json')
2424
```
2525

2626
Alternatively, to avoid constructing the whole query, you can pass parts of the query as arguments:
2727

2828
```
29-
import industryDocumentsWrapper as idw
29+
import industry_documents_wrapper as idw
3030
31-
wrapper = idw.IndustryDocsSearch()
31+
wrapper = idw.ucsf_api.IndustryDocsSearch()
3232
wrapper.query(industry='tobacco', case='State of North Carolina', collection='JUUl labs collection', n=100)
3333
wrapper.save('query_results.json', format='json')
3434
```
@@ -53,4 +53,4 @@ Currently there is support for the following parameters:
5353

5454
**For guidance on the proper way to pass values in the query, please refer to the [API documentation](https://www.industrydocuments.ucsf.edu/wp-content/uploads/2020/08/IndustryDocumentsDataAPI_v7.pdf).**
5555

56-
Please reach out to [Rolando Rodriguez](mailto:[email protected]) with any questions, concerns, or issues.
56+
Please reach out to [Rolando Rodriguez](mailto:[email protected]) with any questions, concerns, or issues.

0 commit comments

Comments
 (0)