Created
July 20, 2015 22:56
-
-
Save jwalsh/eda2c7910e640d239a36 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| entries = [ | |
| [ 'hackathons-challengepost', 'http://challengepost.com/hackathons' ], | |
| [ 'hackathons-angelhack', 'http://angelhack.com/events/' ], | |
| [ 'hackathons-att', 'http://developer.att.com/community/events' ], | |
| [ 'hackathons-hackalist', 'http://www.hackalist.org/' ], | |
| [ 'hackathons-calendar', 'https://raw.githubusercontent.com/japacible/Hackathon-Calendar/master/README.md' ], | |
| [ 'hackathons-hackforchange', 'http://hackforchange.org/events/' ], | |
| [ 'hackathons-eventbrite', 'https://www.eventbrite.com/d/local/hackathon/' ], | |
| ] | |
| def get_entries(): | |
| return entries[:] | |
| if __name__ == "__main__": | |
| for tag, url in set((tag,url) for tag, url in get_entries()): | |
| print tag, url |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment