Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python313-pikepdf-10.1.0-1.2 RPM for i586

From OpenSuSE Ports Tumbleweed for i586

Name: python313-pikepdf Distribution: openSUSE Tumbleweed
Version: 10.1.0 Vendor: openSUSE
Release: 1.2 Build date: Sun Dec 28 20:30:51 2025
Group: Development/Libraries/Python Build host: reproducible
Size: 3251781 Source RPM: python-pikepdf-10.1.0-1.2.src.rpm
Packager: http://bugs.opensuse.org
Url: https://github.com/pikepdf/pikepdf
Summary: Read and write PDFs with Python, powered by qpdf
Read and write PDFs with Python, powered by qpdf.

Provides

Requires

License

MPL-2.0

Changelog

* Sun Dec 28 2025 Dirk Müller <dmueller@suse.com>
  - update to 10.1.0:
    * Added {class}`pikepdf.NamePath` for ergonomic access to deeply
      nested PDF structures. NamePath provides a single-operation
      traversal with helpful error messages showing exactly where
      traversal failed.
    * Added explicit scalar types: {class}`pikepdf.Integer`,
      {class}`pikepdf.Boolean`, and {class}`pikepdf.Real`. When
      explicit conversion mode is enabled, these types
      are returned instead of Python native types (`int`, `bool`,
      `Decimal`), enabling better type safety and static type checking.
    * Added {func}`pikepdf.set_object_conversion_mode` and
      {func}`pikepdf.get_object_conversion_mode` to control
      conversion behavior globally.
    * Added {func}`pikepdf.explicit_conversion` context manager for
      temporarily enabling explicit conversion mode.
    * Added safe accessor methods to
      {class}`pikepdf.Object`: {meth}`~pikepdf.Object.as_int`,
      {meth}`~pikepdf.Object.as_bool`, {meth}`~pikepdf.Object.as_float`, and
      {meth}`~pikepdf.Object.as_decimal` with optional default parameters
      for type-safe access to scalar values.
    * `pikepdf.Integer` and `pikepdf.Real` now support full arithmetic
      operations with both `int` and `float` operands, including true
      division (`/`).
* Sat Nov 15 2025 ecsos <ecsos@opensuse.org>
  - Update to 10.0.2
    - Fixed presentation of strings using unparse_content_stream - if
      the stream can be represented using PdfDocEncoding,
      it is rendered in that way for ease of reading. :issue:682
    - Reformatted C++ source.
  - Changes from 10.0.1
    - Fixed issue with performing equality test on dictionaries with
      cyclic subgraphs. :issue:677
  - Changes from 10.0.0
    Breaking changes for v10.x:
    - Dropped Python 3.9 compatibility, since it is end of life.
      Python 3.10 through 3.14 are supported.
    - Dropped macOS 13 support, since it is end of life.
    - Dropped macOS 14 Intel wheels, because GitHub doesn't provide a way
      to build them - macOS 15 Intel works fine.
    - Dropped deprecated method Pdf.check() (use .check_pdf_syntax()).
    pikepdf now declares unstable "support" for freethreading, and
    does not publish freethreading wheels. All tests seem to pass,
    but that's because the existing tests don't try to create
    race conditions. Must be compiled manually.
* Tue Sep 30 2025 Dirk Müller <dmueller@suse.com>
  - update to 9.11.0:
    - Upgraded to cibuildwheel 3.1.4.
    - We now build wheels for the CPython 3.14 prerelease (but
      without freethreading, since lxml does not release wheels with
      freethreading).
    - Now using uv for building.
    - Fixed broken link in documentation.
    - Migrated all remaining uses of "dumb" pointer holders to
      ``py::smart_holder``.
    - Updated contributing guidelines and build steps.
    - Fixed type signature of AttachedFileSpec to clarify its usage.
    - Fixed missing default /Decode for image masks. {issue}`664`
    - Fixed a missing dependency for ReadTheDocs documentation
      generation.
    - Upgraded to pybind11 3.0, which is now required. Changed many
      of our pointer holder types to use the py::smart_holder.
    - ``Pdf.check()`` is now deprecated, in favor of ``Pdf.check_pdf_syntax()``.
    - Use explicit page number substitution in mupdf to avoid
      problems in how it names output files. {issue}`661`
    - Upgraded to cibuildwheel 3.0.0.
    - C++-20 compiler is now required for building pikepdf.
    - Fixed a reference counting test on Python 3.14a.
    - We no longer build PyPy wheels by default.
    - If a folder named ``../qpdf`` is found, we automatically use
      that as the companion qpdf when building. For developers this
      means building works without setting environment variables.
      Environment variables can still be set to redirect to specific
      installation.
    - Introduced a new {class}`DimensionedFont` to avoid breaking
      changes in other code (mainly OCRmyPDF) that subclasses
      {class}`Font`. Remove the new abstract methods from
      {class}`Font.
    - Added a significant new feature to support filling and
      rendering PDF forms.  Thanks @dmjohnsson23. See `pikepdf.form`
      and `pikepdf.canvas`.
    - Now building wheels against qpdf 12.2.0.
    - We no longer build PyPy wheels on Windows, due to strange test
      failures that appear there and nowhere else.
    - Merged {pr}`639`, a branch containing support for calculating
      the current transformation matrix at time of rendering. This is
      a valuable building block for users wishing to determine when
      and where images are drawn.
    - Clarified need for setuptools 77.0.3 to build. {issue}`648`
    - `pikepdf.Object` that are indirect objects now raise an
      exception on attempts to hash them (add to dict-type
      containers), since they are in fact potentially
      mutable. For now, direct objects can still be hashed, but this
      is likely to be discontinued. {issue}`647`
    - Wheels are now built against qpdf 12.0.0, which should bring
      performance improvements for most workloads.
    - qpdf 11.9.0 is now the minimum build requirement.
    - We no longer build PyPy wheels on macOS, due to poor supporting
      infrastructure and unfixed issues. pikepdf will likely drop
      PyPy in its next major release.
    - `pikepdf._core._ObjectList` no longer reports its `repr()`
      correctly on Windows. This issue appears to be a compiler bug
      in MSVC++ and has no known resolution, but also very minor
      impact.
    - setuptools 77.0.3 is now required for building.
    - Updates to tooling.
    - Fixed an issue where temporary files could be left behind when
      using allow_overwriting_input=True and a SIGINT is sent while
      the file is being flushed to disk, or generally within a
      specific timing window.
    - Fixed an issue via OCRmyPDF by replacing an invalid Document
      Info dictionary with a valid dictionary.
    - Bump version to address sigstore build issues.
    - Pillow dropped PyPy 3.9 so we're dropping it too.
    - Created setter for Outline management to make manipulating outlines easier.
    - pikepdf now sets XMP properties as subelements instead of
      inline properties, in line with the XMP specification.
    - pikepdf an issue with converting certain images to PIL
    - Added a new `pikepdf.exceptions` module which organizes all
      exceptions more conveniently.
    - pikepdf now tries harder to extract corrupt images in a PDF
      when they are found.
    - Fixed an issue where an exception handler referred to an object
      not in scope, causing another exception.
    - Dropped a comment about an unsupported dependency.
* Thu Nov 21 2024 Dirk Müller <dmueller@suse.com>
  - update to 9.4.2:
    * Internal type assertion error messages from qpdf that previously
      triggered a RuntimeError will now raise a PdfError. Generally
      these errors only occur in corrupted files.
    * When we are updating XMP in the processing of saving, errors
      from updating XML are wrapped differently to clarify the
      context in which the error occurs.
    * Fixed a process abort in JBIG2 handling related to cleanup of
      Python objects owned by C++ code.
    * Fixed inconsistent behavior when setting metadata records to an
      empty value.  :issue:`622`
    * Added missing Python 3.13 wheels for a few platforms that were
      missing them, mainly ARM Linux, musllinux/Alpine, and Windows.
    * Since Homebrew has ended support for macOS 12, macOS 13 is now
      the minimum requirement for Intel macOS.
    * Suppressed some spurious warnings during build tests.
    * Integrated OSS Fuzz.
    * Prevented generation of PDF date strings with invalid trailing
      apostrophes, while still accepting them.
    * Improved error message on parsing invalid date strings.
    * Dropped support for Python 3.8 (end of life October 2024).
    * Fixed some inconsistencies with the pikepdf.Rectangle class.
    * Python 3.13 with free-threading added to test matrix.
    * Removed wheel package as build requirement since modern packing
      no longer needs it.
    * Updated C++/Python exception translation to new pybind11
      2.12.0+ protocol, fixing possible undefined behavior in
      multithreaded applications.
    * pybind11 2.12.0 is now required.
    * qpdf 11.9.1 is now used to build wheels.
    * Modernized copyright information to REUSE.toml specification.
    * Added a new test file for a rare case, CCITT with EndOfLine=True.
    * Fixed handling of CalRGB and CalGray images with palettes.
    * Fixed a test suite failure when numpy 2.1 is installed. :issue:`603`
    * Prevented use of setuptools 72+ since it seems to introduce build errors.
    * Added a missing #include header. :issue:`600`
    * Fixed an issue where small floating point values would be recorded in
      scientific notation, contrary to the PDF specification. :issue:`598`
    * Fixed some false positive warnings on Windows C++ compilers.
    * Improved support for Python 3.13 pre-release.
    * Fixed a potential resource leak if we opened a file to read it
      as a PDF but it was not a valid PDF.
    * When overwriting an existing PDF with ``Pdf.save()``, pikepdf
      now attempts to retain the original file permissions and
      ownership.
    * Fixed missing return type for PageList.Extend. :issue:`592`
* Thu May 02 2024 Dirk Müller <dmueller@suse.com>
  - update to 8.15.1:
    * Reformat with ruff.
    * Various updates to build procedures and wheel generation
* Mon Apr 15 2024 Dirk Müller <dmueller@suse.com>
  - update to 8.15.0:
    * Rebuild wheels with QPDF 11.9.0.
    * Relaxed dependency requirements on lxml, now that that project
      is publishing wheels for less common platforms again.
* Thu Mar 28 2024 Dirk Müller <dmueller@suse.com>
  - update to 8.14.0:
    * Added QPDF_FUTURE environment variable for compile time testing
      of new QPDF features.
    * Added new code to suppress console window from appearing on
      Windows in some situations when decoding JBIG2.
    * Updated GitHub Actions versions.
* Sat Mar 16 2024 Dirk Müller <dmueller@suse.com>
  - update to 8.13.0:
    * Enabled PyPy 3.10 support.
    * Rebuilt wheels with QPDF 11.8.0.
    * Improved test coverage slightly.
    * Minor performance improvement when using file streams.
    * Minor update to metadata documentation.
* Wed Mar 13 2024 Dirk Müller <dmueller@suse.com>
  - remove unneeded ipython buildrequires
* Mon Jan 22 2024 Dirk Müller <dmueller@suse.com>
  - update to 8.11.2:
    * Fixed handling of XMP metadata when metadata contains objects
      in a default namespace.
    * Replaced all relative imports with absolute imports.
    * Rebuilt with QPDF 11.7.0.
    * Added support for setting page boxes to a rectangle directly,
      e.g. ``page.mediabox = rectangle`` - previously rectangle had
      to manually converted to an array.
    * Fixed rendering of PDF and individual pages in Jupyter/IPython.
      Newer versions of these tools are now pickier about what types
      of data they render, and don't render PDFs directly; we now
      provide SVG which works well. Requires installation of MuPDF
      as before.
    * Fixed rendering of inline images in Jupyter/IPython, which was
      not implemented.
    * Fixed build process to use new artifacts v4 actions on GitHub.
* Wed Dec 27 2023 Dirk Müller <dmueller@suse.com>
  - update to 8.10.1:
    * Rebuilt with QPDF 11.6.4.
    * Replaced use of a custom C++ logger with sharing QPDF's.
      It is still relayed to the Python logger.
    * Added a simpler API for adding attachments from bytes data.
    * Deprecated use of Object.parse(str) in favor of
      Object.parse(bytes).
* Wed Dec 13 2023 ecsos <ecsos@opensuse.org>
  - Update to 8.9.0
    - Overhauled documentation. Previously the documentation could only
      be generated in an environment where pikepdf was compiled and installed,
      since generating the final result depended on executing pikepdf.
      Now, these dynamic features are removed and the documentation is static.
      All documentation that was defined in C++ has been pulled out and defined
      in Python stub files instead, which means compiled binaries are no longer
      needed to access documentation. This change simplifies the generation of
      documentation and makes it easier for IDEs to look up function signatures.
    - Similarly, typing is now defined only in Python stub files.
  - Update to 8.8.0
    - Added new pikepdf.canvas module with rudimentary content stream creation functions.
  - Update to 8.7.1
    - Fixed pikepdf.Matrix.rotated() so it now rotates in the advertised direction.
  - Update to 8.7.0
    - pikepdf.PdfMatrix is now deprecated, in favor of pikepdf.Matrix.
      The former, unfortunately, implemented some operations backwards
      compared to the PDF reference manual. The new class fixes these issues,
      and adds more functionality, promoting transformation matrix to first class objects.
      PdfMatrix is now deprecated and will be removed in the next major release.
    - Improve behavior around truthiness of pikepdf.Name.
  - Update to 8.6.0
    - Implemented Page.artbox and Page.bleedbox to access these page dimension boxes.
  - Update to 8.5.3
    - Fixed exception on certain PdfImage.__repr__ when the image's mode was invalid.
    - Fixed some minor issues that caused code coverage to miss some covered lines.
    - Removed some unused code.
* Mon Dec 11 2023 Jonathan Papineau <jonathan@jontech.app>
  - update to 8.9.0
    * Overhauled documentation
    * Added new pikepdf.canvas module with rudimentary content stream creation functions
    * Fixed pikepdf.Matrix.rotated() so it now rotates in the advertised direction
    * pikepdf.PdfMatrix is now deprecated, in favor of pikepdf.Matrix
    * Improve behavior around truthiness of pikepdf.Name
    * Implemented Page.artbox and Page.bleedbox to access these page dimension boxes
    * Fixed exception on certain PdfImage.__repr__ when the image’s mode was invalid
    * Fixed some minor issues that caused code coverage to miss some covered lines
* Sat Oct 21 2023 Soc Virnyl Estela <uncomfy+openbuildservice@uncomfyhalomacro.pl>
  - update to 8.5.2:
    * Fix incorrect usage of sys_platform
    * Don't install psutil on Windows and update other test dependencies
    * Move psutil-needing tests to their own script
    * Raise hypothesis deadlines
    * Fix a few type hints
    * Fix return values of global set/get fns and add get_access_default_mmap to pyi
    * Update binary wheel list
    * Simplify atomic_overwrite exception handler
    * Increase arm64 build coverage - add musl and cp312
    * Stop building PyPy3.8 wheels due to lack of Pillow support
    * Implementation AFRelationship for AttachedFileSpec
    * docs: update info about creating PDFs
    * Change to building against libqpdf v11.6.1
    * Disable pp3.10 since numpy binary wheels aren't released yet
    * Merge branch 'trusted-release'
    * Try adding url to see if it suppresses legacy warning
    * Merge branch 'm-holger-rect'
    * rect: tidy and prepare for release
    * Fixing use of typing | on Python 3.9
    * Add Python 3.8 shim
    * Improve CCITT tests
    * Implement Decode array to better support weird CCITTs
    * Fix another CCITT inversion issue
    * Improve available version documentation
    * Better documentation for atomic_overwrite
    * Fix saving file opened from BytesIO on Windows
    * Change atomic_overwite to use exclusive creation
    * black doesn't support py312 yet
    * Update documentation for 3.12 support
    * Update note about needsappearances
    * Allow Python 3.12 build to fail
    * Test Python 3.12 pre-release
    * Merge pull request #504 from m-holger/qm
    * Fix link to QPDF manual
    * Add docs back to sdist
    * build: found a way to make RTD trigger again
    * build: Replace deprecated "::set-output"
    * Add Rectangle operators '<=' and '&'
  - Use pyproject
* Tue Jul 25 2023 ecsos <ecsos@openssue.org>
  - Add %{?sle15_python_module_pythons}
* Mon Jul 24 2023 Dirk Müller <dmueller@suse.com>
  - update to 8.2.1:
    * Support for Python 3.7 is dropped.
    * Added Page.form_xobjects, which returns all Form XObjects that
      are used in a page
    * Fixed an issue with extracting images that were compressed
      with multiple compression filters
    * Improved Object.repr() to avoid printing the entire contents
      of large object trees such as those in PDFs with structural
      element trees.
    * Fixed error when attempting to convert XMP metadata to
      DocumentInfo when the author was omitted.
    * Added a method to add items to the document table of contents.
    * Adjusted stream preview (with __repr__) so it does not attempt
      to decompress very long
    * Removed uses of deprecated function datetime.utcnow()
    * Adjusted timeline of potentially flaky hypothesis test.
    * PyPy 3.10 is now supported on some platforms.
    * PyPy 3.8 support will be dropped in the next major release
* Wed May 10 2023 Dirk Müller <dmueller@suse.com>
  - update to 6.2.8.post1:
    * Drop PyPy3.7 from wheel builds, since dependencies (lxml, Pillow)
      no longer provide it.
    * Fixed some tests that randomly failed on Windows due to newline
      handling issues.
* Mon Jan 02 2023 Dirk Müller <dmueller@suse.com>
  - update to 6.2.7:
    * Removed a debug message during mmap.
    * Fixed errors when using AccessMode.mmap
    * Fixed noisy log message.
    * Made some flakey tests less flakey.
    * Fixed deprecated information in setup.cfg. Thanks @mgorny.
    * Rebuild binary wheels using zlib 1.2.13. Source build unchanged.

Files

/usr/lib/python3.13/site-packages/pikepdf
/usr/lib/python3.13/site-packages/pikepdf-10.1.0.dist-info
/usr/lib/python3.13/site-packages/pikepdf-10.1.0.dist-info/INSTALLER
/usr/lib/python3.13/site-packages/pikepdf-10.1.0.dist-info/METADATA
/usr/lib/python3.13/site-packages/pikepdf-10.1.0.dist-info/RECORD
/usr/lib/python3.13/site-packages/pikepdf-10.1.0.dist-info/REQUESTED
/usr/lib/python3.13/site-packages/pikepdf-10.1.0.dist-info/WHEEL
/usr/lib/python3.13/site-packages/pikepdf-10.1.0.dist-info/licenses
/usr/lib/python3.13/site-packages/pikepdf-10.1.0.dist-info/licenses/LICENSE.txt
/usr/lib/python3.13/site-packages/pikepdf-10.1.0.dist-info/top_level.txt
/usr/lib/python3.13/site-packages/pikepdf/__init__.py
/usr/lib/python3.13/site-packages/pikepdf/__pycache__
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_augments.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_augments.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_cpphelpers.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_cpphelpers.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_data.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_data.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_exceptions.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_exceptions.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_io.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_io.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_methods.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_methods.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_version.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_version.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_xml.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/_xml.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/canvas.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/canvas.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/codec.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/codec.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/exceptions.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/exceptions.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/form.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/form.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/jbig2.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/jbig2.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/objects.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/objects.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/settings.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/__pycache__/settings.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/_augments.py
/usr/lib/python3.13/site-packages/pikepdf/_core.cpython-313-i386-linux-gnu.so
/usr/lib/python3.13/site-packages/pikepdf/_core.pyi
/usr/lib/python3.13/site-packages/pikepdf/_cpphelpers.py
/usr/lib/python3.13/site-packages/pikepdf/_data.py
/usr/lib/python3.13/site-packages/pikepdf/_exceptions.py
/usr/lib/python3.13/site-packages/pikepdf/_io.py
/usr/lib/python3.13/site-packages/pikepdf/_methods.py
/usr/lib/python3.13/site-packages/pikepdf/_version.py
/usr/lib/python3.13/site-packages/pikepdf/_xml.py
/usr/lib/python3.13/site-packages/pikepdf/canvas.py
/usr/lib/python3.13/site-packages/pikepdf/codec.py
/usr/lib/python3.13/site-packages/pikepdf/exceptions.py
/usr/lib/python3.13/site-packages/pikepdf/form.py
/usr/lib/python3.13/site-packages/pikepdf/jbig2.py
/usr/lib/python3.13/site-packages/pikepdf/models
/usr/lib/python3.13/site-packages/pikepdf/models/__init__.py
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/_content_stream.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/_content_stream.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/_transcoding.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/_transcoding.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/ctm.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/ctm.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/encryption.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/encryption.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/image.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/image.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/outlines.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/__pycache__/outlines.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/_content_stream.py
/usr/lib/python3.13/site-packages/pikepdf/models/_transcoding.py
/usr/lib/python3.13/site-packages/pikepdf/models/ctm.py
/usr/lib/python3.13/site-packages/pikepdf/models/encryption.py
/usr/lib/python3.13/site-packages/pikepdf/models/image.py
/usr/lib/python3.13/site-packages/pikepdf/models/metadata
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__init__.py
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/_constants.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/_constants.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/_converters.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/_converters.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/_core.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/_core.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/_docinfo.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/_docinfo.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/_xmp.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/__pycache__/_xmp.cpython-313.pyc
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/_constants.py
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/_converters.py
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/_core.py
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/_docinfo.py
/usr/lib/python3.13/site-packages/pikepdf/models/metadata/_xmp.py
/usr/lib/python3.13/site-packages/pikepdf/models/outlines.py
/usr/lib/python3.13/site-packages/pikepdf/objects.py
/usr/lib/python3.13/site-packages/pikepdf/py.typed
/usr/lib/python3.13/site-packages/pikepdf/settings.py
/usr/share/doc/packages/python313-pikepdf
/usr/share/doc/packages/python313-pikepdf/README.md
/usr/share/licenses/python313-pikepdf
/usr/share/licenses/python313-pikepdf/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Thu Mar 5 23:04:22 2026