- Peter Tapsell (Conservative Party, Louth and Horncastle) source 1959
- Alan Beith (Liberal Democrats, Berwick-upon-Tweed) source 1973
- John Stanley (Conservative Party, Tonbridge and Malling) source 1974
- George Young (Conservative Party, North West Hampshire) source 1974
- Malcolm Rifkind (Conservative Party, Kensington) [source](http://news.sky.com/story/1433201/cash-for-access-rifkind-steps
| import time | |
| import requests | |
| import twitter | |
| import re | |
| from bs4 import BeautifulSoup | |
| consumer_key = '######' | |
| consumer_secret = '######' | |
| access_token = '######' |
| #!/usr/bin/env python | |
| import requests | |
| import twitter | |
| from common import get_empty_json_directory, write_ppc_json | |
| twitter_handle = 'Vote_UKIP' | |
| list_name = 'ukip-ppcs-3' |
| import time | |
| import requests | |
| ''' | |
| Check for Green Party candidates in Scotland (they are probably | |
| supposed to be Scottish Green Party candidates) | |
| ''' | |
| r = requests.get('http://mapit.mysociety.org/areas/WMC') |
| from bs4 import BeautifulSoup | |
| import requests | |
| import time | |
| import json | |
| import re | |
| ############################################# | |
| # # | |
| # Find MP twitter accounts on Tweetminster; # | |
| # check if they're present on YourNextMP # |
| import json | |
| import requests | |
| import time | |
| url = 'http://yournextmp.popit.mysociety.org/api/v0.1/search/persons?q=party:%%27Liberal%%20Democrats%%27&page=%d' | |
| has_more = True | |
| page = 0 | |
| results = [] |
| import requests | |
| import json | |
| import time | |
| import re | |
| ############################################### | |
| ## ## | |
| ## Add to YourNextMP all of the Labour MPs ## | |
| ## confirmed as standing ## |
Disclaimer: I don’t work for Code Club; I’m a volunteer. Also: I don’t blog.
I’ve been doing a fair bit of work on the Code Club lesson formatter lately. That’s the tool used to turn source markdown, resources and json into a static website of Code Club projects (UK; World).
To all that attended the Code Club meetup last night,
Thanks so so much for coming along! It was ace to meet with and chat to so many of you. (If you couldn’t make it: next time!)
Of course volunteering to run a club has its own rewards, but it’s still always lovely to meet with other volunteers and potential volunteers, discuss shared experiences, and of course to say thank you and well done to one another in person :) I feel lucky to be part of such a great community.
If, following discussion, you do have some great ideas for how Code Club can be improved (or some great experiences you’d like to share), you can always tweet @CodeClub or get in touch with the dedicated 24-hours-a-day, 7-days-a-week Volunteer Support Team: support@codeclub.org.uk (that’s a joke! the Code Club team is teeny-tiny. But I know they love hearing from their volunteers.)
As you may have noticed, the amount of meetup organisation required was small, and could even have been smaller! E.g.
| import string | |
| import time | |
| import urllib2 | |
| ''' | |
| Generate KML for London postcode regions | |
| ''' | |
| url_base = 'http://www.free-postcode-maps.co.uk/_polygons/' |
