Giulio Bottari

Results 6 comments of Giulio Bottari

Do you think importing from CSV files might help? A lot of people are comfortable with spreadsheet software like Microsoft Excel and Google Sheets that can create CSV files. Moreover,...

Yeah, I agree that editing a giant file with quotes is not ideal. What do you imagine the web app would do? Edit the json file so that the user...

I see. But how would these contributions end up on the quotes.json file in this repo? The app would just write the json file and the contributor would open the...

Oh, I see now @nelsonic . The current workflow is not ideal because the user has to edit the big json file to open a PR. What you wish is...

I recently faced the same problem with Chalice version `1.27.3`. Changing from set comprehension to the `set()` function worked out, i.e. this does not work: ```python # app.py {item['value'] for...

I'm also getting `OverflowError` in a similar situation when I expected a `ParserError`. This generates a ParserError: `parse("2147483647")` while this generates an `OverflowError`: `parse("2147483648")`