Beispiel #1
0
	def get_rss(self, languageId, timespanId):
		rss_feed = rss.get_rss(github.languages[languageId], github.timespans[timespanId], github.get_projects(languageId, timespanId))
	
		return rss_feed
Beispiel #2
0
#!/usr/bin/python

import github

print github.get_projects("c", "daily")
print github.get_languages()
Beispiel #3
0
    def get_rss(self, languageId, timespanId):
        rss_feed = rss.get_rss(github.languages[languageId],
                               github.timespans[timespanId],
                               github.get_projects(languageId, timespanId))

        return rss_feed
Beispiel #4
0
#!/usr/bin/python
import rss
import github

print rss.get_rss('c', 'C', 'weekly', github.get_projects('csharp', 'weekly'))