4 Commits

Author SHA1 Message Date
Vinayak Mehta 1f0a1c0c68 Merge pull request #218 from socialcopsdev/add-chardet
Add chardet to install_requires
2018-12-05 21:00:22 +05:30
Vinayak Mehta cb3e76726b Bump version 2018-12-05 20:10:25 +05:30
Vinayak Mehta 2635f910e4 Add chardet to install_requires 2018-12-05 20:08:37 +05:30
Vinayak Mehta 7bdd9a3156 Update docs 2018-12-01 06:29:35 +05:30
4 changed files with 10 additions and 2 deletions
+7
View File
@@ -4,6 +4,13 @@ Release History
master
------
0.4.1 (2018-12-05)
------------------
**Bugfixes**
* Add chardet to `install_requires` to fix [#210](https://github.com/socialcopsdev/camelot/issues/210). More details in [pdfminer.six#213](https://github.com/pdfminer/pdfminer.six/issues/213).
0.4.0 (2018-11-23)
------------------
+1 -1
View File
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
VERSION = (0, 4, 0)
VERSION = (0, 4, 1)
PRERELEASE = None # alpha, beta or rc
REVISION = None
+1 -1
View File
@@ -146,7 +146,7 @@ Finally, let's plot all line intersections present on the table's PDF page.
Specify table areas
-------------------
Since :ref:`Stream <stream>` treats the whole page as a table, `for now`_, it's useful to specify table boundaries in cases such as `these <../_static/pdf/table_areas.pdf>`__. You can plot the text on this page and note the top left and bottom right coordinates of the table.
In cases such as `these <../_static/pdf/table_areas.pdf>`__, it can be useful to specify table boundaries. You can plot the text on this page and note the top left and bottom right coordinates of the table.
Table areas that you want Camelot to analyze can be passed as a list of comma-separated strings to :meth:`read_pdf() <camelot.read_pdf>`, using the ``table_areas`` keyword argument.
+1
View File
@@ -14,6 +14,7 @@ with open('README.md', 'r') as f:
requires = [
'chardet>=3.0.4',
'click>=6.7',
'numpy>=1.13.3',
'openpyxl>=2.5.8',