home / github / issue_comments

Menu
  • Search all tables
  • GraphQL API

issue_comments: 538847446

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/dogsheep/pocket-to-sqlite/issues/1#issuecomment-538847446 https://api.github.com/repos/dogsheep/pocket-to-sqlite/issues/1 538847446 MDEyOklzc3VlQ29tbWVudDUzODg0NzQ0Ng== 9599 2019-10-07T05:41:17Z 2019-10-07T05:41:17Z MEMBER

Prototype code: python offset = 0 fetched = [] size = 500 while True: page = requests.get("https://getpocket.com/v3/get", { "consumer_key": consumer_key, "access_token": access_token, "sort": "oldest", "detailType": "complete", "count": size, "offset": offset, }).json() print(offset) fetched.append(page) offset += size if not len(page["list"]): break

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