Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
| <?php | |
| function lookuppostcode($postcode) { | |
| $postcode = str_replace(" ", "", $postcode); | |
| $key = 'YOUR_API_KEY'; | |
| $request = 'https://api.getAddress.io/v2/uk/' . $postcode . '?api-key=' . $key; | |
| $response = file_get_contents($request); | |
| $response = json_decode($response, true); | |
| $returnData = array(); |
Getting started:
Related tutorials:
A. Eloquent
| # Demonstration of inspecting all the routes, including those on sub-apps, | |
| # from the default app instance. | |
| # | |
| # This should be run directly to print a list of route prefixes and the rules. | |
| # Tested with Python 2.7 and Bottle-dev. Patch here | |
| # https://github.com/davidwtbuxton/bottle/commit/ddd712ef252b06ecd0e957f8ac4e37b65ee79cae | |
| import bottle | |
| subapp = bottle.Bottle() |