https://github.com/ashutoshvarma/pyxpdf_data
Python package containing additional encoding files for pyxpdf.
https://github.com/ashutoshvarma/pyxpdf_data
python pyxpdf
Last synced: about 1 month ago
JSON representation
Python package containing additional encoding files for pyxpdf.
- Host: GitHub
- URL: https://github.com/ashutoshvarma/pyxpdf_data
- Owner: ashutoshvarma
- License: other
- Created: 2020-05-20T14:45:08.000Z (about 5 years ago)
- Default Branch: stable
- Last Pushed: 2023-12-15T05:27:39.000Z (over 1 year ago)
- Last Synced: 2024-09-28T09:16:03.962Z (8 months ago)
- Topics: python, pyxpdf
- Language: Python
- Size: 3.21 MB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/ashutoshvarma/pyxpdf_data/actions)
[](https://pypi.org/project/pyxpdf-data/)# pyxpdf_data
This python package consists of encoding files for use with [pyxpdf](https://github.com/ashutoshvarma/pyxpdf).
The encoding files are taken from [poppler_data](https://gitlab.freedesktop.org/poppler/poppler-data) repo .
It is optional and pyxpdf will automatically utilize them if module is install.## Install
```
pip install pyxpdf_data
```### Why make seprate module for just encoding files ?
I would love to ship them with pyxpdf but some of these files have different license
than pyxpdf so we have to distribute them seprately.## License
While pyxpdf is licensed under the GPL, these encoding files have different
license, and thus distributed separately.
The cMap data files in the poppler_data folder are under the COPYING.adobe
license.
The cidToUnicode, nameToUnicode and unicodeMap data files in the the poppler_data
folder are Copyright Glyph & Cog, LLC and are under the COPYING.gpl2 license.Fonts in fonts folder are released under the GNU Affero General Public License v3.0.
Verbatim copies of the Ghostscript project's licensing info are included with this
package see fonts/COPYING.afferoThe rest of module is licensed under MIT.
## Changelog
### v1.1.0 (04/08/2020)
- remove default settings for pyxpdf (now resides in pyxpdf itself)
- add option to disable rewriting of xpdfrc in `get_xpdfrc()`
- add 35 Postscript base fonts from ghostscript### v1.0.1 (31/03/2020)
- Fix `xpdfrc` path not readable when installed in system site package### v1.0 (20/03/2020)
- Initial Version