rows icon indicating copy to clipboard operation
rows copied to clipboard

A common, beautiful interface to tabular data, no matter the format

Results 104 rows issues
Sort by recently updated
recently updated
newest added

Use [liac-arff](https://pythonhosted.org/liac-arff) to implement at least `export_to_arff`.

enhancement
plugin

Some institutions release data in [fixed-width text files](http://www.softinterface.com/Convert-XLS/Features/Fixed-Width-Text-File-Definition.htm) (a lot of them uses R to parse it), like [these IBGE files](ftp://ftp.ibge.gov.br/Trabalho_e_Rendimento/Pesquisa_Nacional_por_Amostra_de_Domicilios_anual/microdados/2015/). It would be awesome to import these files so...

enhancement
help wanted
plugin

Sometimes it's useful to represent fractions, instead of using `float` or `decimal.Decimal`. Python has the [fractions module](https://docs.python.org/3/library/fractions.html) in the stdlib (both Python 2 and 3) and we could use it....

rows.fields

I have this schema, with some custom fields: ```python import rows class MoneyField(rows.fields.TextField): @classmethod def deserialize(cls, value): value = value.replace('.', '')\ .replace(',', '.') return super().deserialize(value) class DocumentField(rows.fields.TextField): @classmethod def deserialize(cls,...

enhancement
help wanted
plugin
rows.table
rows.fields

[JSON-lines](http://jsonlines.org/) files consist of JSON objects separated by new lines. For example: ``` $ cat file.jsonl {"msg": "hello world", "lang": "en"} {"msg": "ola mundo", "lang": "pt"} {"msg": "bla bla", "lang":...

enhancement
help wanted
plugin

Create a better API for writing plugins, taking into consideration that the library will try to do the most it can so the only plugin's job will be to import/export...

help wanted
plugin
docs

Reading [this file (sheet "Contracheque")](http://www.cnj.jus.br/files/conteudo/arquivo/2017/12/a87206d2e30bea3b98b5069637e23345.xls) is not easy using rows. We need to fix it. [Sample code using pandas](https://github.com/marcosvafg/python/blob/master/data_science/salario_juizes/Salarios_Juizes_TJDFT_122017.ipynb).

enhancement
plugin

If we can use Python standard library's `xml` module instead of lxml, then we should move all plugins which use it to `xml` (but use lxml if available, since it's...

enhancement
help wanted

Please tell us where are you from and the project/organization name you're using this library. :)