Merge remote-tracking branch 'origin/dev' into dev

# Conflicts:
#	gui/second_page.py
#	main.py
This commit is contained in:
danamir
2018-05-02 22:32:32 +03:00
6 changed files with 97 additions and 121 deletions

0
service/doc_parse.py Normal file
View File

8
service/test1.py Normal file
View File

@@ -0,0 +1,8 @@
from docx import Document
doc = Document('test.docx')
full_text = []
for i in doc.paragraphs:
full_text.append(i.text)
print(full_text)