Tell me more ×
Web Applications Stack Exchange is a question and answer site for power users of web applications. It's 100% free, no registration required.

How do I track new projects on Github (are there any RSS feeds, scrapable pages or a web app to the same effect)?

On similar open-source hosting/aggregating sites:

I have found that SourceForge has RSS feeds (with lots of noise projects, but that can't be helped):

Freecode is the simplest case, but it is unfortunately rather stable and does not reflect my core interests or find new projects sufficiently fast.

share|improve this question
Your question prompted me to look at Sourceforge for the first time in years, and I have to say I was really shocked by all the Microsoft ads. How things have changed! – Dmitri Jun 13 at 17:47
@Dmitri - what ads? :) (good to have some well-tuned blockers) I would also include codeplex etc. in the watchlist, but GitHub tends to attract more stuff nowadays. – Deer Hunter Jun 13 at 17:52
2  
This question might be better asked on Web Applications, but you might need to reword it as it currently reads a bit like a "list of X" question (the only answer you got was a link only answer). – ChrisF Jun 15 at 10:19
@ChrisF - I'm going to add details on GitHub Developers' API into the question. – Deer Hunter Jun 15 at 21:19
1  
Hey Deer Hunter, I've removed the answer part from your question prior to migration, because... answers should be posted as answers ;) You can find it in the revision history of your original question, and you can (and should) post it as an answer here. – Yannis Jun 17 at 22:57

migrated from programmers.stackexchange.com Jun 17 at 22:55

2 Answers

up vote 1 down vote accepted

GitHub has a developers' API which can be accessed from an unregistered user at the rate of 60 queries per hour.

To see how many queries remain, use this GET endpoint: https://api.github.com/rate_limit

To obtain the list of repositories, this GET endpoint is used: https://api.github.com/repositories

For more details on pagination (30 items per request by default) and other parameters see the docs.

share|improve this answer

For github you may have a look at

http://thechangelog.com/github-trends-provides-a-rss-feed-for-most-watched-and-m/

Note: Not all feeds are working.

share|improve this answer
1  
Ugh, sorry - "not all feeds are working" is an understatement. – Deer Hunter Jun 13 at 17:42
Sorry for the quick reversal, must wrap my head around that site. EDIT: Not having a Fortran feed is cruel... – Deer Hunter Jun 13 at 17:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.