-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/en' into develop
- Loading branch information
Showing
33 changed files
with
1,016 additions
and
957 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
[run] | ||
include=*raspador* | ||
omit=tasks.py | ||
omit=tasks.py,*ordereddict* | ||
|
||
[report] | ||
exclude_lines = | ||
|
||
raise NotImplementedError | ||
|
||
if __name__ == '__main__': | ||
if __name__ == '__main__': | ||
|
||
except ImportError: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ MANIFEST | |
|
||
# Virtualenvs | ||
env* | ||
.tox | ||
|
||
# Distribute | ||
build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
Documentação do raspador | ||
======================== | ||
.. _topics-index: | ||
|
||
================================ | ||
Raspador |version| documentation | ||
================================ | ||
|
||
Conteúdo: | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
raspador | ||
.. toctree:: | ||
:hidden: | ||
|
||
intro/overview | ||
intro/install | ||
intro/tutorial | ||
|
||
Índices e tabelas | ||
================== | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` | ||
Looking for specific information? Try the :ref:`genindex` or :ref:`modindex`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
******* | ||
Install | ||
******* | ||
|
||
|
||
Package managers | ||
================ | ||
|
||
You can install using pip or easy_install. | ||
|
||
PIP:: | ||
|
||
pip install raspador | ||
|
||
Easy install:: | ||
|
||
easy_install raspador | ||
|
||
|
||
From source | ||
=========== | ||
|
||
Download and install from source:: | ||
|
||
git clone https://github.com/fgmacedo/raspador.git | ||
cd raspador | ||
python setup.py install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,31 @@ | ||
|
||
======== | ||
raspador | ||
======== | ||
|
||
O módulo raspador fornece estrutura genérica para extração de dados a partir de | ||
arquivos texto semi-estruturados. | ||
|
||
|
||
Analizador | ||
Parser | ||
---------- | ||
|
||
.. automodule:: raspador.analizador | ||
.. automodule:: raspador.parser | ||
:members: | ||
|
||
|
||
Campos | ||
------ | ||
|
||
.. automodule:: raspador.campos | ||
.. automodule:: raspador.fields | ||
:members: | ||
:undoc-members: | ||
|
||
|
||
Coleções | ||
-------- | ||
Item | ||
---- | ||
|
||
.. automodule:: raspador.colecoes | ||
.. automodule:: raspador.item | ||
:members: | ||
:undoc-members: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
# flake8: noqa | ||
|
||
from .analizador import Analizador, Dicionario | ||
from .campos import CampoBase, CampoString, CampoNumerico, \ | ||
CampoInteiro, CampoData, CampoDataHora, CampoBooleano | ||
from .parser import Parser | ||
from .item import Dictionary | ||
from .fields import BaseField, StringField, FloatField, BRFloatField, \ | ||
IntegerField, DateField, DateTimeField, BooleanField | ||
|
||
from .decoradores import ProxyDeCampo, ProxyConcatenaAteRE | ||
from .decorators import FieldProxy, UnionUntilRegexProxy | ||
|
||
from .cache import Cache |
Oops, something went wrong.