summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* New import/export interface with dataset and databook `import_` and `export` ↵import_exportIuri de Silvio2015-04-054-31/+121
| | | | | | methods and overloaded `import_set` and `import_book` functions.
* ALLKenneth Reitz2014-05-271-0/+1
|
* v0.10.0 historyKenneth Reitz2014-05-271-1/+2
|
* makefile for WHEELSKenneth Reitz2014-05-271-0/+4
|
* Merge branch 'develop'Kenneth Reitz2014-05-2755-167/+19144
|\
| * .orgv0.10.0Kenneth Reitz2014-05-271-1/+1
| |
| * 3.3, 3.4Kenneth Reitz2014-05-271-0/+2
| |
| * WHEELSKenneth Reitz2014-05-271-0/+2
| |
| * v0.10.0Kenneth Reitz2014-05-271-4/+4
| |
| * CORE CONTRIBUTORSKenneth Reitz2014-05-271-1/+6
| | | | | | | | :cake: @iurisilvio
| * Merge pull request #150 from brad/csv-newlinesIuri de Silvio2014-05-022-2/+18
| |\ | | | | | | Allow csv fields to have multiple lines.
| | * allow csv fields to have multiple linesBrad Pitcher2014-05-012-2/+18
| |/
| * Merge pull request #149 from brad/tests_fixIuri de Silvio2014-05-011-2/+3
| |\ | | | | | | Load json to dict to workaround random dictionary hashes. Fix #147
| | * load json to dict to workaround random dictionary hashesBrad Pitcher2014-04-301-2/+3
| |/
| * Add NOTICE and tests files to manifestIuri de Silvio2014-04-231-1/+1
| | | | | | | | | | Tests are code. The NOTICE file is about third-party licenses and are important too.
| * Add travis badge to readmeIuri de Silvio2014-04-231-0/+3
| |
| * Fix DeprecationWarnings: assertEquals -> assertEqualIuri de Silvio2014-04-191-3/+3
| |
| * Add py33 to travis matrixIuri de Silvio2014-04-191-0/+1
| |
| * Exit with error when `python setup.py test` failsIuri de Silvio2014-04-191-2/+2
| |
| * Merge pull request #146 from kennethreitz/fix/unicode_appendIuri de Silvio2014-04-193-7/+15
| |\ | | | | | | Fix test_unicode_append
| | * Fix test_unicode_appendfix/unicode_appendIuri de Silvio2014-04-193-7/+15
| | |
| * | Merge pull request #141 from fcurella/developIuri de Silvio2014-04-191-0/+1
| |\ \ | | |/ | |/| added missing yaml3 module to setup.py
| | * added missing package to setup.pyFlavio Curella2014-03-101-0/+1
| | |
| * | Merge pull request #144 from aleasoluciones/developIuri de Silvio2014-04-141-2/+2
| |\ \ | | |/ | |/| Remove `extend` from first example to make it simple.
| | * Update docsGuillermo Pascual2014-04-081-2/+2
| |/
| * Merge pull request #137 from gisce/fix_xlsx_detect_testKenneth Reitz2014-01-231-1/+1
| |\ | | | | | | Use InvalidFileException to fix the test
| | * Use InvalidFileException to fix the testEduard Carreras2014-01-231-1/+1
| |/
| * Maintain dataset title after sort.Iuri de Silvio2014-01-112-3/+4
| |
| * don't use ExcelWriter with databookThomas Coopman2014-01-111-2/+1
| |
| * Merge pull request #117 from iurisilvio/patch-1Kenneth Reitz2014-01-081-1/+1
| |\ | | | | | | Fix typo: avalable -> available
| | * Fix typo: avalable -> availableIuri de Silvio2013-09-151-1/+1
| | |
| * | Merge pull request #63 from jsdalton/fix_unicode_error_in_html_outputKenneth Reitz2014-01-083-8/+11
| |\ \ | | | | | | | | Fix unicode error in html output
| | * | Make sure codecs module loaded for all versions of PythonJim Dalton2012-05-101-1/+1
| | | |
| | * | Fix UnicodeError in HTML outputJim Dalton2012-05-103-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Alter `test_unicode_append` so that actual unicode characters outside the ASCII bytestring range are tested. * Make sure output of `render` in markup.py is unicode * Add wrapper around output of `export_set` in _html.py so that unicode characters are output.
| * | | Merge pull request #76 from djv/developKenneth Reitz2014-01-083-0/+67
| |\ \ \ | | | | | | | | | | xls and xlsx import support
| | * | | xls and xlsx import supportDaniel Velkov2012-06-013-0/+67
| | | | |
| * | | | Merge pull request #110 from djrobstep/developKenneth Reitz2014-01-083-3/+5
| |\ \ \ \ | | | | | | | | | | | | Fix for a broken YAML test and tsv autodetection
| | * | | | Fixed tsv auto format detection.Robert Lechte2013-08-282-1/+3
| | | | | |
| | * | | | Changed yaml dumping to use safe_dump, for consistency with loading.Robert Lechte2013-08-281-2/+2
| | | |_|/ | | |/| |
| * | | | Merge pull request #111 from dec0dedab0de/developKenneth Reitz2014-01-083-4/+5
| |\ \ \ \ | | | | | | | | | | | | using readlines() in _tsv.py fixes a small bug.
| | * | | | Removed import of openpyxl all togetherJames Patrick Robinson Jr2013-08-281-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's not needed for any of these tests, but if it were we would need to check for the python version to import the right one.
| | * | | | safe_load is not working for bookJames Patrick Robinson Jr2013-08-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | yaml.safe_load() was not working for import_book, changed it to use yaml.load() instead.
| | * | | | changed import to reflect vendorized openpyxlJames Patrick Robinson Jr2013-08-281-1/+1
| | | | | |
| | * | | | put the install back inJames Patrick Robinson Jr2013-08-271-0/+2
| | | | | |
| | * | | | Merge branch 'master' into developJames Patrick Robinson Jr2013-08-270-0/+0
| | |\ \ \ \
| | * | | | | edited travis to match masterJames Patrick Robinson Jr2013-08-271-1/+0
| | | | | | |
| | * | | | | changed split('\r\n') to splitlines()James Patrick Robinson Jr2013-08-271-2/+2
| | | |/ / / | | |/| | |
| * | | | | Merge pull request #116 from kachick/fix-tsv-typoKenneth Reitz2014-01-081-2/+2
| |\ \ \ \ \ | | | | | | | | | | | | | | Fix some typos in TSV test comment
| | * | | | | Fix some typos in TSV test commentKenichi Kamiya2013-08-311-2/+2
| | |/ / / /
| * | | | | Merge pull request #119 from iurisilvio/empty_sheetKenneth Reitz2014-01-081-0/+1
| |\ \ \ \ \ | | | | | | | | | | | | | | Remove XLSX empty sheet on export_book