home / github / issue_comments

Menu
  • Search all tables
  • GraphQL API

issue_comments: 778844016

This data as json

html_url issue_url id node_id user created_at updated_at author_association body reactions issue performed_via_github_app
https://github.com/simonw/sqlite-utils/issues/229#issuecomment-778844016 https://api.github.com/repos/simonw/sqlite-utils/issues/229 778844016 MDEyOklzc3VlQ29tbWVudDc3ODg0NDAxNg== 9599 2021-02-14T21:22:45Z 2021-02-14T21:22:45Z OWNER

I'm going to use this pattern from https://stackoverflow.com/a/15063941 ```python import sys import csv maxInt = sys.maxsize

while True: # decrease the maxInt value by factor 10 # as long as the OverflowError occurs.

try:
    csv.field_size_limit(maxInt)
    break
except OverflowError:
    maxInt = int(maxInt/10)

```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
807817197  
Powered by Datasette · Queries took 0.804ms · About: github-to-sqlite