-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'hotfix/locale-and-filemagic'
- Loading branch information
Showing
10 changed files
with
139 additions
and
58 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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# rows' Log of Changes | ||
|
||
## Version `0.2.0` (under development) | ||
|
||
**Released on: (under development)** | ||
|
||
- Enhance README | ||
- Refactor `export_to_txt` | ||
- Support lazy objects on `create_table` | ||
- Add `samples` parameter to `create_table` | ||
- Add plugin JSON (thanks [@sxslex](https://github.com/sxslex)) | ||
|
||
|
||
## Version `0.1.1` | ||
|
||
**Released on: 2015-09-03** | ||
|
||
- Fix code to run on Windows (thanks [@sxslex](https://github.com/sxslex)) | ||
- Fix locale (name, default name etc.) | ||
- Remove `filemagic` dependency (waiting for `python-magic` to be available on | ||
PyPI) | ||
- Write log of changes for `0.1.0` and `0.1.1` | ||
|
||
|
||
## Version `0.1.0` | ||
|
||
**Released on: 2015-08-29** | ||
|
||
- Implement `Table` and its basic methods | ||
- Implement basic plugin support with many utilities and the following formats: | ||
- `csv` (input/output) | ||
- `html` (input/output) | ||
- `txt` (output) | ||
- `xls` (input/output) | ||
- Implement the following field types - many of them with locale support: | ||
- `ByteField` | ||
- `BoolField` | ||
- `IntegerField` | ||
- `FloatField` | ||
- `DecimalField` | ||
- `PercentField` | ||
- `DateField` | ||
- `DatetimeField` | ||
- `UnicodeField` | ||
- Implement basic `Table` operations: | ||
- `sum` | ||
- `join` | ||
- `transform` | ||
- `serialize` | ||
- Implement a command-line interface with the following subcommands: | ||
- `convert` | ||
- `join` | ||
- `sort` | ||
- `sum` | ||
- Add examples to the repository |
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,5 +1,4 @@ | ||
click | ||
filemagic | ||
lxml | ||
requests | ||
unicodecsv | ||
|
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 |
---|---|---|
|
@@ -25,3 +25,6 @@ | |
from rows.plugins.html import import_from_html, export_to_html | ||
except ImportError: | ||
pass | ||
|
||
|
||
__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
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 |
---|---|---|
|
@@ -6,20 +6,20 @@ | |
setup(name='rows', | ||
description='Import and export tabular data easily with Python', | ||
long_description='', | ||
version='0.1.0', | ||
version='0.1.1', | ||
author=u'Álvaro Justen', | ||
author_email='[email protected]', | ||
url='https://github.com/turicas/rows/', | ||
packages=['rows', 'rows.plugins'], | ||
install_requires=['unicodecsv', 'click', 'filemagic', 'requests'], | ||
install_requires=['unicodecsv', 'click', 'requests'], | ||
extras_require = { | ||
'csv': ['unicodecsv'], | ||
'html': ['lxml'], # apt: libxslt-dev libxml2-dev | ||
'cli': ['click', 'filemagic', 'requests'], | ||
'cli': ['click', 'requests'], | ||
'xls': ['xlrd', 'xlwt'], | ||
'all': ['unicodecsv', | ||
'lxml', | ||
'click', 'filemagic', 'requests', | ||
'click', 'requests', | ||
'xlrd', 'xlwt'], | ||
}, | ||
keywords=['tabular', 'table', 'csv', 'xls', 'html', 'rows'], | ||
|
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