dogsheep / github-to-sqlite

Save data from GitHub to a SQLite database
https://github-to-sqlite.dogsheep.net/
Apache License 2.0
405 stars 43 forks source link

Add "incomplete" boolean to users table for incomplete profiles #5

Closed simonw closed 4 years ago

simonw commented 5 years ago

User profiles that are fetched from e.g. stargazers (#4) are incomplete - they have a login but they don't have name, company etc.

Add a incomplete boolean flag to the users table to record this. Then later I can add a backfill-users command which loops through and fetches missing data for those incomplete profiles.

simonw commented 4 years ago

Might not need an incomplete boolean - may be possible to handle this with alter=True and then by filtering for users with null values in certain columns.

simonw commented 4 years ago

Yeah alter=True means that this isn't necessary.