Summarization
BERTopic
English
math
PeakyWillow commited on
Commit
507b659
·
verified ·
1 Parent(s): dc37311

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import boto3
2
+
3
+ client = boto3.client('textract')
4
+ with open('sample.pdf', 'rb') as document:
5
+ response = client.analyze_document(
6
+ Document={'Bytes': document.read()},
7
+ FeatureTypes=['TABLES', 'FORMS']
8
+ )