Skip to content

fetch info about project to analyze data later. get stars, language, contributor size

License

Notifications You must be signed in to change notification settings

danielstaleiny/github-fetch-data-repos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

github-fetch-data-repos

fetch info about repos to analyze data later. get stars, language, contributor size

to merge data files run

cat data/data-* > raw_dataset.csv

to remove duplicates run

  • -u unique
  • -o output file
sort -u -o uniq.csv raw_dataset.csv

to order them based on stars run

  • -g general numeric value sort
  • -r reversed order (desc)
  • -t separator ","
  • -k3 by 3th column, starts with k1
  • -o output file
sort -gr -t , -k3 -o dataset.csv uniq.csv

About

fetch info about project to analyze data later. get stars, language, contributor size

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published