Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,9 @@ string_json={
|
|
6 |
'control':'0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMN',
|
7 |
}
|
8 |
cont_list=list(string_json['control'])
|
9 |
-
json_object={}
|
10 |
def get_nouns(text):
|
|
|
|
|
11 |
blob = TextBlob(text)
|
12 |
for sentence in blob.sentences:
|
13 |
print(sentence)
|
|
|
6 |
'control':'0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMN',
|
7 |
}
|
8 |
cont_list=list(string_json['control'])
|
|
|
9 |
def get_nouns(text):
|
10 |
+
json_object={}
|
11 |
+
sen_list=[]
|
12 |
blob = TextBlob(text)
|
13 |
for sentence in blob.sentences:
|
14 |
print(sentence)
|