-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename .html to .lxml * use `lxml.html.fromstring` and `lxml.html.tostring` to process HTML * use `lxml.etree.fromstring` and `lxml.etree.tostring` to process XML * Add check_isort, check_black, check, check_all, fc: format_code into Makefile * Update .travis.yml for linting check by isort and black * Bump to v0.1.1
- Loading branch information
Showing
9 changed files
with
72 additions
and
28 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 |
---|---|---|
|
@@ -134,6 +134,8 @@ dmypy.json | |
.vscode | ||
## Makefile | ||
.black | ||
.check_black | ||
.check_isort | ||
.develop | ||
.flake | ||
.isort | ||
|
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,7 +1,9 @@ | ||
# Changelog | ||
|
||
## v0.1.0 | ||
## v0.1.1 | ||
|
||
- initialize project | ||
- add Extractor to extract data from the text which format is HTML or JSON. | ||
- add complex extractor: Field, Item | ||
- Rename `.html` to `.lxml`; Remove `fromstring`, `tostring` function from `.lxml` | ||
* Rename .html to .lxml | ||
* use `lxml.html.fromstring` and `lxml.html.tostring` to process HTML | ||
* use `lxml.etree.fromstring` and `lxml.etree.tostring` to process XML | ||
- Add **check_isort**, **check_black**, **check**, **check_all**, **fc**: **format_code** into Makefile for development. |
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,5 @@ | ||
## v0.1.0 | ||
|
||
- initialize project | ||
- add Extractor to extract data from the text which format is HTML or JSON. | ||
- add complex extractor: Field, Item |
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 +1 @@ | ||
__version__ = "0.1.0" | ||
__version__ = "0.1.1" |
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