Metadata-Version: 2.1
Name: pagpdf
Version: 0.9.1
Summary: Print number of PAGes in PDF files.
Home-page: https://pypi.org/project/pagpdf
Author: Carlo Alessandro Verre
Author-email: carlo.alessandro.verre@gmail.com
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: POSIX :: Linux
Requires-Dist: libfunx >=0.9.4
Requires-Dist: pdfrw >=0.4

```
INSTALLATION

    $ pip3 install pagpdf

HELP

    $ pagpdf -h

USAGE

    $ pagpdf [-h] [-V] [-n] [-r] [-t] [-T] [file [file ...]]


Print number of PAGes in PDF files.

This simple utility prints file counter, number of pages and filename
for each given pdf file.

Non-pdf files are silently discarded.

Empty or erroneous pdf files are reported as containing zero pages.

Examples:

    $ pagpdf * # list number of pages of all pdf files in current path

    $ pagpdf * 2>/dev/null # leave out warnings from pdfrw.PdfReader

POSITIONAL ARGUMENTS

  file                  files to be listed (non-pdf files are silently
                        discarded)

OPTIONAL ARGUMENTS

  -h, --help            show this help message and exit
  -V, --version         show program's version number and exit
  -n, --sort-by-num-of-pages
                        sort files by number of pages (default: sort by
                        filename)
  -r, --reverse         sort files in descending order (default: sort in
                        ascending order)
  -t, --total-too       print file list and total line (default: print file
                        list)
  -T, --total-only      print total line only (default: print file list)
```

