TheyHelpYou is a project to help vulnerable, shielding and self-isolating people to find their local Community Hub and get help.
It is the inspiration, design and code of @boffbowsh, @Rossehkins and @RTO.
With lots of help crowd-sourcing the data from @CreaFarrar, @Doccykins, and many others.
If you would like to help, the most important thing you can do is:
- STAY HOME.
- PROTECT THE NHS.
- SAVE LIVES.
If you have time to spare you can contribute by reviewing and commenting where you find out of date information in this spreadsheet.
For example, perhaps the Community Hub page has been updated and the URL has changed.
The data is available via an API, currently with no restrictions.
GET https://www.theyhelpyou.co.uk/api/postcode?postcode=$postcode
Example request: GET https://www.theyhelpyou.co.uk/api/postcode?postcode=SW1A1AA
Response:
{
"gss": "E09000033",
"name": "Westminster",
"homepage_url": "https://www.westminster.gov.uk/",
"email": "[email protected]",
"hub_url": "https://www.westminster.gov.uk/coronavirus-how-you-can-help",
"phone": "020 7641 1222",
"date_collected": "31/03/2020",
"notes": null
}
Nothing fancy here right now, just a flat HTML file with jQuery and Handlebars,
and the tiniest bit of CSS. Anything that's in the site/
directory will get
uploaded to S3. The cache max-age is 10 while we're developing, but will be 60
or 300 when properly live.
Because of CORS, if you want to run the code locally and hit the live API, you'll need to serve it from a local web server. The simplest way is using Python's built-in HTTP server:
$ cd site
$ python -m SimpleHTTPServer
Then visit http://0.0.0.0:8000/index.html
The backend runs as 3 simple Python 3.7 Lambda functions, stored in the api/
directory. There's no Serverless framework or similar involved, just a make
task that uploads a ZIP containing all the funcitons and their dependencies to
S3 and updates the Lambda definitions.
The data is imported from the spreadsheet into a DynamoDB table keyed by GSS code. We look this up from another table which maps postcodes to GSS code. This needs updating when we start supporting per-district hubs for councils like East Sussex.
Run make test
to run the tests.
Code is MIT Licensed
Data is CC-BY-SA 4.0 Licensed