William Ayd

Results 421 comments of William Ayd

Can you add a note in the documentation with a matrix of version support? We can release pantab 3.0 with this, so something where pantab 3.0 works for 0.0.14567 and...

Thanks for the report. Can you share what version of pantab and the tableauhyperapi you are using? Get Outlook for iOS ________________________________ From: Rafael Garcia ***@***.***> Sent: Monday, May 23,...

FYI it looks like this works if you alias your column names, i.e. if you change your query to: ```sql SELECT sum(new_appt) AS a, sum(new_appt) AS b FROM sales ```...

Yea there is still a bug here. It likely stems from this: https://github.com/innobi/pantab/blob/f6a9fbb3f73cd51ada79e5d6d6aa114aea77dc98/pantab/_reader.py#L29 i.e. it is a mistake to be using a dict as a container. This should be replaceable...

The first step is to create a test that reproduces your failure. This should go in pantab/tests/test_reader.py. The test should be a function named test_reads_duplicate_column_names and the function body should...

Thanks for the note. If you’d like to create a pull request with a test it would be very welcome

I think you can still use pantab to write an empty dataframe? Or is that not working either?

That is unfortunate. Well if you are feeling ambitious here's a guide I wrote in pandas for how to debug their C extensions. The same rules should apply here in...

Alternately we could also just return early if the data frame is empty during write, not even invoking the tableau inserter. Definitely an untested case here with reading/writing empty frames....