Update intro

pull/2/head
Vinayak Mehta 2018-09-13 16:15:54 +05:30
parent 3a980a46c1
commit 9011491ce2
2 changed files with 9 additions and 2 deletions

View File

@ -12,7 +12,6 @@ At a very high level, PostScript defines instructions, such as, "place this char
Sadly, a lot of open data is given out as tables which are trapped inside PDF files. Sadly, a lot of open data is given out as tables which are trapped inside PDF files.
.. _The Camelot Project: http://www.planetpdf.com/planetpdf/pdfs/warnock_camelot.pdf
.. _PostScript: http://www.planetpdf.com/planetpdf/pdfs/warnock_camelot.pdf .. _PostScript: http://www.planetpdf.com/planetpdf/pdfs/warnock_camelot.pdf
Why another PDF Table Parsing library? Why another PDF Table Parsing library?
@ -29,6 +28,14 @@ Here is a `comparison`_ of Camelot's output with outputs from other libraries an
.. _Smallpdf: https://smallpdf.com .. _Smallpdf: https://smallpdf.com
.. _comparison: https://github.com/socialcopsdev/camelot/wiki/Comparison-with-other-PDF-Table-Parsing-libraries-and-tools .. _comparison: https://github.com/socialcopsdev/camelot/wiki/Comparison-with-other-PDF-Table-Parsing-libraries-and-tools
What's in a name?
-----------------
As you can already guess, this library is named after `The Camelot Project`_. The image on the left is taken from `Monty Python and the Holy Grail`_. In the movie, it is the castle "Camelot" where Arthur leads his men, the Knights of the Round Table, and then sets off elsewhere after deciding that it is "a silly place". Interestingly, the language in which this library is written was named after Monty Python.
.. _The Camelot Project: http://www.planetpdf.com/planetpdf/pdfs/warnock_camelot.pdf
.. _Monty Python and the Holy Grail: https://en.wikipedia.org/wiki/Monty_Python_and_the_Holy_Grail
Camelot License Camelot License
--------------- ---------------

View File

@ -85,7 +85,7 @@ By default, Camelot only parses the first page of the PDF. To specify multiple p
>>> camelot.read_pdf('your.pdf', pages='1,2,3') >>> camelot.read_pdf('your.pdf', pages='1,2,3')
The ``pages`` keyword argument accepts pages as comma-separated string of page numbers. You can also specify page ranges, such as ``pages=1,4-10,20-30`` or ``pages=1,4-10,20-end``. The ``pages`` keyword argument accepts pages as comma-separated string of page numbers. You can also specify page ranges, for example ``pages=1,4-10,20-30`` or ``pages=1,4-10,20-end``.
------------------------ ------------------------