Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 759e635a3c | |||
| 6298f3a0f6 | |||
| 08f638243e | |||
| 6703f2f254 | |||
| 13f2b199c9 |
@@ -6,6 +6,7 @@ build/
|
|||||||
dist/
|
dist/
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
.coverage
|
.coverage
|
||||||
|
coverage.xml
|
||||||
|
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
_build/
|
_build/
|
||||||
|
|||||||
Executable
+11
@@ -0,0 +1,11 @@
|
|||||||
|
language: python
|
||||||
|
python:
|
||||||
|
- "2.7"
|
||||||
|
before_install:
|
||||||
|
- sudo apt-get install python-tk ghostscript
|
||||||
|
install:
|
||||||
|
- pip install ".[dev]"
|
||||||
|
script:
|
||||||
|
- pytest
|
||||||
|
after_success:
|
||||||
|
- codecov
|
||||||
@@ -1,11 +1,14 @@
|
|||||||
|
<p align="center">
|
||||||
|
<img src="https://raw.githubusercontent.com/socialcopsdev/camelot/master/docs/_static/camelot.png" width="200">
|
||||||
|
</p>
|
||||||
|
|
||||||
# Camelot: PDF Table Extraction for Humans
|
# Camelot: PDF Table Extraction for Humans
|
||||||
|
|
||||||
 
|
[](https://travis-ci.org/socialcopsdev/camelot) [](https://codecov.io/github/socialcopsdev/camelot?branch=master)
|
||||||
|
[](https://pypi.org/project/camelot-py/) [](https://pypi.org/project/camelot-py/) [](https://pypi.org/project/camelot-py/)
|
||||||
|
|
||||||
**Camelot** is a Python library which makes it easy for *anyone* to extract tables from PDF files!
|
**Camelot** is a Python library which makes it easy for *anyone* to extract tables from PDF files!
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
**Here's how you can extract tables from PDF files.** Check out the PDF used in this example, [here](https://github.com/socialcopsdev/camelot/blob/master/docs/_static/pdf/foo.pdf).
|
**Here's how you can extract tables from PDF files.** Check out the PDF used in this example, [here](https://github.com/socialcopsdev/camelot/blob/master/docs/_static/pdf/foo.pdf).
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
VERSION = (0, 1, 1)
|
VERSION = (0, 1, 2)
|
||||||
|
|
||||||
__title__ = 'camelot-py'
|
__title__ = 'camelot-py'
|
||||||
__description__ = 'PDF Table Extraction for Humans.'
|
__description__ = 'PDF Table Extraction for Humans.'
|
||||||
|
|||||||
+11
-2
@@ -8,10 +8,19 @@ Camelot: PDF Table Extraction for Humans
|
|||||||
|
|
||||||
Release v\ |version|. (:ref:`Installation <install>`)
|
Release v\ |version|. (:ref:`Installation <install>`)
|
||||||
|
|
||||||
.. image:: https://img.shields.io/badge/license-MIT-lightgrey.svg
|
.. image:: https://travis-ci.org/socialcopsdev/camelot.svg?branch=master
|
||||||
|
:target: https://travis-ci.org/socialcopsdev/camelot
|
||||||
|
|
||||||
|
.. image:: https://codecov.io/github/socialcopsdev/camelot/badge.svg?branch=master&service=github
|
||||||
|
:target: https://codecov.io/github/socialcopsdev/camelot?branch=master
|
||||||
|
|
||||||
|
.. image:: https://img.shields.io/pypi/v/camelot-py.svg
|
||||||
:target: https://pypi.org/project/camelot-py/
|
:target: https://pypi.org/project/camelot-py/
|
||||||
|
|
||||||
.. image:: https://img.shields.io/badge/python-2.7-blue.svg
|
.. image:: https://img.shields.io/pypi/l/camelot-py.svg
|
||||||
|
:target: https://pypi.org/project/camelot-py/
|
||||||
|
|
||||||
|
.. image:: https://img.shields.io/pypi/pyversions/camelot-py.svg
|
||||||
:target: https://pypi.org/project/camelot-py/
|
:target: https://pypi.org/project/camelot-py/
|
||||||
|
|
||||||
**Camelot** is a Python library which makes it easy for *anyone* to extract tables from PDF files!
|
**Camelot** is a Python library which makes it easy for *anyone* to extract tables from PDF files!
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
codecov==2.0.15
|
||||||
pytest==3.8.0
|
pytest==3.8.0
|
||||||
pytest-runner==4.2
|
pytest-runner==4.2
|
||||||
Sphinx==1.7.9
|
Sphinx==1.7.9
|
||||||
Reference in New Issue
Block a user