Metadata-Version: 2.1
Name: pikepdf_annots
Version: 0.0.1
Summary: PikePDF helper utilities
Home-page: https://github.com/DiveWithDamian/pikepdf-annots
Author: Damian Zaremba
Author-email: oss@divewithdamian.eu
License: MIT
Description: PikePDF helper utilities
        ========================
        
        Helper utilities for editing PDFs using [PikePDF](https://github.com/pikepdf/pikepdf).
        
        ## Example usage
        
        ```python3
        from pathlib import PosixPath
        from pikepdf_annots import EditableForm, AnnotationMatcher
        
        class ExampleForm(EditableForm):
            def _get_source_pdf(self) -> PosixPath:
                return PosixPath('source.pdf')
        
        with ExampleForm() as pdf:
            pdf.update_annotation(0, AnnotationMatcher("First Name"), "Bob")
            pdf.update_annotation(0, AnnotationMatcher("Last Name"), "Smoth")
        ```
        
Keywords: pikepdf pdf annots annotations
Platform: any
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
