mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-04 08:52:54 +01:00
7389f85ef2
- Move fancy naming to Hub - Adopt translations - Fix long authors list in bot - Support CJK in scitech - Fixed pylon bug with decoding improper unicode ch... GitOrigin-RevId: 74f73c44f749a71cb65dd5ddd3416f32a83d329f
10 lines
192 B
Python
10 lines
192 B
Python
from pdfminer.high_level import extract_text
|
|
|
|
|
|
def is_pdf(path_to_file):
|
|
try:
|
|
extract_text(path_to_file, maxpages=1)
|
|
return True
|
|
except Exception:
|
|
return False
|