summaryrefslogtreecommitdiff
path: root/README.rst
Commit message (Collapse)AuthorAgeFilesLines
* Converted README/HISTORY to Markdown formatHugo van Kemenade2019-10-031-182/+0
|
* Refs #378 - Added the Jazzband badge to the READMEClaude Paroz2019-10-031-0/+4
|
* Refs #378 - Updated Travis and GitHub linksClaude Paroz2019-10-031-5/+4
|
* Merge branch 'master' into masterJean Jordaan2019-03-031-27/+40
|\
| * Add Jira table exportMathias Loesch2019-01-231-0/+1
| |
| * Update README.rstKenneth Reitz2018-09-171-1/+1
| |
| * Update README.rstKenneth Reitz2018-09-171-0/+2
| |
| * Typo: OSD -> ODSIuri de Silvio2018-09-121-1/+1
| | | | | | Fix #330
| * update install instructionsKenneth Reitz2017-09-011-3/+3
| | | | | | | | Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
| * Update README.rstKenneth Reitz2017-08-281-6/+6
| |
| * Update README.rstKenneth Reitz2017-08-271-1/+1
| |
| * Update README.rstKenneth Reitz2017-08-271-2/+2
| |
| * Update README.rstKenneth Reitz2017-08-271-0/+1
| |
| * Update README.rstKenneth Reitz2017-08-271-3/+12
| |
* | Missed some tabs.Jean Jordaan2016-07-311-7/+7
| |
* | Editing while reading: punctuation, markup, linebreaksJean Jordaan2016-07-311-25/+32
|/ | | | | | | | | | I fixed some extra commas, missing apostrophes, and typos; added some linebreaks between sentences for very long lines; added explicit markup for console blocks, got rid of some tabs, fixed indentation of an admonition, and some more small tweaks. This supersedes https://github.com/kennethreitz/tablib/pull/84
* Update README.rstCandyLikeSmile2016-03-241-1/+1
|
* Update README.rstKenneth Reitz2016-02-071-0/+2
|
* v0.11.0Kenneth Reitz2016-02-071-3/+1
|
* Adding DBF support.James Douglass2014-08-211-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashing two squashes. Adding DBF support Adding the DBFpy python package The DBFpy package provides basic dbf support for python. Still need to write an interface format file for tablib. Adding DBF format and imports in compat.py Adding DBF format to formats.__init__ DBF format had not been committed to formats.__init__, so I’m adding it. Adding a dbf import test Adding at test to check whether a DBF can be created properly and compare it against a regression binary string. Adding an import_set test (and renaming another) Adding an import_set test that conforms with the other import_set tests for other formats. I’m also adding an export_set function. Fixing system site-packages import Importing dbfpy from tab lib.packages instead of system site packages. Fixing a syntaxError in dbfpy/dbfnew.py Fixing an issue with ending field definitions DBFPY, when writing a DBF, terminates the field definitions with a newline character. When importing a DBF from a stream, however, DBFPY was looking only for the \x0D character rather than the newline. Now we consider both cases. Adding a test for dbf format detection Adding DBF filetype detection tests Adding tests for YAML, JSON, TSV, CSV using the DBF detection function. Handling extra exceptions in dbf detection Adding exception handling for struct.error, an exception that DBFPY raises when trying to unpack a TSV table. Since it’s not a DBF file, we know it’s not a DBF and return False. Fixing an issue with the DBF set exporting test The DBF set export test needed a bit enabled (probably the writeable bit?) before the test would match the regression output. Updating dbf interface Updating the int/float class/type checking in the dbf format file. This allows for python2 and python3 compatibility. Tweaking dbfpy to work with python3 Altering a couple of imports. Updating dbf tests for binary data compatibility Making regression strings binary and improving debug messages for dbf assertion errors. Improving file handling for python 2 and 3 Updating DBF file handling for both python 2 and 3 in the _dbf interface. Adding a (seemingly) functional dbfpy for python3 I’ve made dbfpy python3 compatible! Tests appear to pass. A significant change was made to the format detection test whereby I made the input string a binary (bytes) string. If the string is not a bytes string by the time we try to detect the format, we try to decode the string as utf-8 (which admittedly might not be the safest thing to do) and try to decode anyways. Updating imports for tablib dbf interface Now importing python2 or python3 versions as appropriate. Updating dbf package references in compat.py Cleaning up debugging print statements Updating stream handling in dbf interface Factoring the open() call out of the py3 conditional and removing the temp file before returning the stream value. Adding dbfpy3 init.py I had apparently missed the dbfpy3 init file when committing dbfpy3. Adding dbfpy and dbfpy3 to setup.py's package list Switching test order of formats Putting dbf format testing ahead of TSV. In some of my tests with numeric DBF files, I encountered an issue where the ASCII horizontal tab character (0x09) would appear in a numeric DBF. Because of the order of tabular format imports, though, format detection would recognize it as a TSV and not as a DBF. Adding my name to AUTHORS. Adding a DBF property to tab lib core Documentation includes examples on how to explicitly load a DBF straight from a file and how to load a DBF from a binary string. Also, how to write the binary data to a file. Adding DBF format notes to README Adding exclamation point to DBF section title Matching formatting of XLS section Updating setup.py to match current dev state Setup.py had been updated since I forked the tablib repo, so I’m updating setup.py to match its current structure while still maintaining DBF compatibility. Fixed callable collumn test the test was sending a list instead of a function CORE CONTRIBUTORS :cake: @iurisilvio v0.10.0 WHEELS 3.3, 3.4 makefile for WHEELS v0.10.0 history ALL Separate py2 and py3 packages to avoid installation errors. Fix #151 Running travis and tox with python 3.4. Adding DBF support Adding the DBFpy python package The DBFpy package provides basic dbf support for python. Still need to write an interface format file for tablib. Adding DBF format and imports in compat.py Adding DBF format to formats.__init__ DBF format had not been committed to formats.__init__, so I’m adding it. Adding a dbf import test Adding at test to check whether a DBF can be created properly and compare it against a regression binary string. Adding an import_set test (and renaming another) Adding an import_set test that conforms with the other import_set tests for other formats. I’m also adding an export_set function. Fixing system site-packages import Importing dbfpy from tab lib.packages instead of system site packages. Fixing a syntaxError in dbfpy/dbfnew.py Fixing an issue with ending field definitions DBFPY, when writing a DBF, terminates the field definitions with a newline character. When importing a DBF from a stream, however, DBFPY was looking only for the \x0D character rather than the newline. Now we consider both cases. Adding a test for dbf format detection Adding DBF filetype detection tests Adding tests for YAML, JSON, TSV, CSV using the DBF detection function. Handling extra exceptions in dbf detection Adding exception handling for struct.error, an exception that DBFPY raises when trying to unpack a TSV table. Since it’s not a DBF file, we know it’s not a DBF and return False. Fixing an issue with the DBF set exporting test The DBF set export test needed a bit enabled (probably the writeable bit?) before the test would match the regression output. Updating dbf interface Updating the int/float class/type checking in the dbf format file. This allows for python2 and python3 compatibility. Tweaking dbfpy to work with python3 Altering a couple of imports. Updating dbf tests for binary data compatibility Making regression strings binary and improving debug messages for dbf assertion errors. Improving file handling for python 2 and 3 Updating DBF file handling for both python 2 and 3 in the _dbf interface. Adding a (seemingly) functional dbfpy for python3 I’ve made dbfpy python3 compatible! Tests appear to pass. A significant change was made to the format detection test whereby I made the input string a binary (bytes) string. If the string is not a bytes string by the time we try to detect the format, we try to decode the string as utf-8 (which admittedly might not be the safest thing to do) and try to decode anyways. Updating imports for tablib dbf interface Now importing python2 or python3 versions as appropriate. Updating dbf package references in compat.py Cleaning up debugging print statements Updating stream handling in dbf interface Factoring the open() call out of the py3 conditional and removing the temp file before returning the stream value. Adding dbfpy3 init.py I had apparently missed the dbfpy3 init file when committing dbfpy3. Adding dbfpy and dbfpy3 to setup.py's package list Switching test order of formats Putting dbf format testing ahead of TSV. In some of my tests with numeric DBF files, I encountered an issue where the ASCII horizontal tab character (0x09) would appear in a numeric DBF. Because of the order of tabular format imports, though, format detection would recognize it as a TSV and not as a DBF. Adding my name to AUTHORS. Adding a DBF property to tab lib core Documentation includes examples on how to explicitly load a DBF straight from a file and how to load a DBF from a binary string. Also, how to write the binary data to a file. Adding DBF format notes to README Adding exclamation point to DBF section title Matching formatting of XLS section Updating setup.py to match current dev state Setup.py had been updated since I forked the tablib repo, so I’m updating setup.py to match its current structure while still maintaining DBF compatibility. Fixed callable collumn test the test was sending a list instead of a function CORE CONTRIBUTORS :cake: @iurisilvio v0.10.0 WHEELS 3.3, 3.4 makefile for WHEELS v0.10.0 history ALL Separate py2 and py3 packages to avoid installation errors. Fix #151 Running travis and tox with python 3.4.
* Add travis badge to readmeIuri de Silvio2014-04-231-0/+3
|
* Write the example file reliably in the readmeAlex Gaynor2013-08-251-1/+2
| | | The previous way doesn't work on PyPy or Jython, and emits warnings in recent python3s.
* Adding documentation changes for append_colMike Waldner2011-08-091-1/+1
| | | | Related #21
* readme updateKenneth Reitz2011-05-221-9/+2
|
* new roadmapKenneth Reitz2011-05-131-2/+1
|
* Update TODOsKenneth Reitz2011-04-051-22/+26
|
* updated roadmapKenneth Reitz2011-03-241-2/+5
|
* Small doc updatesKenneth Reitz2011-02-181-4/+2
|
* Readme.rst improvements Kenneth Reitz2011-02-131-42/+2
|
* Prepping for new release (0.9.3)Kenneth Reitz2011-01-311-0/+1
|
* Update column append examples.Kenneth Reitz2010-11-091-3/+2
|
* Added TSV to Readme.Kenneth Reitz2010-11-041-0/+2
|
* Typo in readme. Kenneth Reitz2010-10-051-1/+1
|
* Big documentation update. Kenneth Reitz2010-09-251-5/+45
|
* Readme update for imports. Kenneth Reitz2010-09-251-5/+10
|
* Only CSV Left.Kenneth Reitz2010-09-251-1/+1
|
* Updated TODO.Kenneth Reitz2010-09-201-2/+1
|
* Documentation update for properties.Kenneth Reitz2010-09-201-4/+4
|
* Updated readme to reflect property to method changes.Kenneth Reitz2010-09-201-5/+5
|
* Updated readme for column additions.Kenneth Reitz2010-09-141-5/+9
|
* Updated RoadmapKenneth Reitz2010-09-131-0/+1
|
* Updated Readme.rstKenneth Reitz2010-09-131-0/+1
|
* README.rst update.Kenneth Reitz2010-09-131-1/+1
|
* Readme issueKenneth Reitz2010-09-121-2/+1
|
* Another readme update.Kenneth Reitz2010-09-121-4/+12
|
* Heavy readme update.Kenneth Reitz2010-09-121-24/+52
|
* updated readme a bitKenneth Reitz2010-09-121-3/+23
|
* Updates for push.Kenneth Reitz2010-09-121-9/+9
|
* Readme cleanups.Kenneth Reitz2010-09-111-4/+0
|
* Packaging for distribution.Kenneth Reitz2010-09-111-22/+5
|