Last active
April 16, 2019 11:31
-
-
Save proycon/9bc90d77a4d5422c8e50364bf4ca30d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import folia.main as folia | |
import sys | |
doc = folia.Document(file=sys.argv[1]) | |
for p in doc.paragraphs(): | |
print("Text:", p.text()) | |
try: | |
print("Language:", p.annotation(folia.LangAnnotation).cls) | |
except folia.NoSuchAnnotation: | |
print("No language for this paragraph") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment