Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The result contains extra newline #39

Open
DanteAndroid opened this issue Jun 10, 2022 · 0 comments
Open

The result contains extra newline #39

DanteAndroid opened this issue Jun 10, 2022 · 0 comments

Comments

@DanteAndroid
Copy link

image

Left is original doc file, right is file I exported with following code
import docx2txt
import os

def write_file(name, content):
    with open(name, 'w') as file:
        file.write(content)

files = os.listdir()

for file in files:
    if file.endswith('.docx'):
       text = docx2txt.process(file)
       write_file(file.replace('.docx', '.srt'), text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant