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

**"ValueError: Type names and field names cannot be a keyword: 'def'** alguém saberia dar uma luz

```diff diff --git a/rows/utils.py b/rows/utils.py index 471e36e..3e7fd98 100644 --- a/rows/utils.py +++ b/rows/utils.py @@ -756,7 +757,7 @@ def get_psql_copy_command( if direction not in ("FROM", "TO"): raise ValueError('`direction` must be "FROM" or...

Python version: 3.7.1 rows version: 0.4.1 cli command `rows schema table.csv ` is treating empty columns as `bool` ![image](https://user-images.githubusercontent.com/2186646/54716558-c232c300-4b34-11e9-8f19-71f2631e7320.png) Example of csv file is attached [table.csv.zip](https://github.com/turicas/rows/files/2989960/table.csv.zip)

If the schema is detected or specified, the `rows.utils.csv_to_sqlite` function must use the field classes to convert the values before exporting to SQL. To reproduce the bug, create two files:...

bug

Example: ```python from rows.fields import detect_schema, load_schema table1 = rows.import_from_csv('filename.csv') schema = detect_schema(table1) # after table = rows.import_from_csv('filename.csv', schema=schema) # or table = rows.import_from_csv('filename.csv', schema=load_schema('schema.csv')) ``` Related to #237. Tasks:...

enhancement
rows.fields

Hello, in the update to python3.7 rows is failint test with the message: FAIL: rows.Table.__add__ should be constant time ---------------------------------------------------------------------- Traceback (most recent call last): File "/builddir/build/BUILD/rows-0.3.1/tests/tests_table.py", line 318, in...

There are a lot of use cases which involve storing CSV files compressed since the compression ratio is high, so we can save space. Sometimes we'd like to work directly...

Hi! I noticed that the documentation is at http://turicas.info/rows/ and there was an attempt to serve it from Read the Docs at https://rows.readthedocs.io/en/latest/ (https://readthedocs.org/projects/rows/) but it's not well configured. I...

I am trying to create a rows.Table object from a list of dicts, but when the value `0.0` is found it automatically converts the float object to `rows.field.IntegerField` ``` In...

If `ignore_colspan=True` (default), all lines having a size smaller than the max row size for that table will be ignored. This was created to have the same number of fields...

bug
enhancement
plugin