John db67805ec6
feat: add support for partitioning .heic files (#2454)
.heic files are an image filetype we have not supported.

#### Testing
```
from unstructured.partition.image import partition_image

png_filename = "example-docs/DA-1p.png"
heic_filename = "example-docs/DA-1p.heic"

png_elements = partition_image(png_filename, strategy="hi_res")
heic_elements = partition_image(heic_filename, strategy="hi_res")

for i in range(len(heic_elements)):
	print(heic_elements[i].text == png_elements[i].text)
```

---------

Co-authored-by: christinestraub <christinemstraub@gmail.com>
2024-01-30 04:49:00 +00:00

62 lines
1.2 KiB
Plaintext

#
# This file is autogenerated by pip-compile with Python 3.9
# by the following command:
#
# pip-compile --output-file=ingest/github.txt ingest/github.in
#
certifi==2023.11.17
# via
# -c ingest/../base.txt
# -c ingest/../constraints.in
# requests
cffi==1.16.0
# via
# cryptography
# pynacl
charset-normalizer==3.3.2
# via
# -c ingest/../base.txt
# requests
cryptography==42.0.1
# via pyjwt
deprecated==1.2.14
# via pygithub
idna==3.6
# via
# -c ingest/../base.txt
# requests
pycparser==2.21
# via cffi
pygithub==2.1.1
# via -r ingest/github.in
pyjwt[crypto]==2.8.0
# via pygithub
pynacl==1.5.0
# via pygithub
python-dateutil==2.8.2
# via
# -c ingest/../base.txt
# pygithub
requests==2.31.0
# via
# -c ingest/../base.txt
# pygithub
six==1.16.0
# via
# -c ingest/../base.txt
# python-dateutil
typing-extensions==4.9.0
# via
# -c ingest/../base.txt
# pygithub
urllib3==1.26.18
# via
# -c ingest/../base.txt
# -c ingest/../constraints.in
# pygithub
# requests
wrapt==1.16.0
# via
# -c ingest/../base.txt
# deprecated