Talk given to full stack cohort at Galvanize/Boulder on December 20, 2016 about building APIs with Python / Flask.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

part0_gettingstarted.ipynb 1.3 KiB

8 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "markdown",
  5. "metadata": {},
  6. "source": [
  7. "# Getting started with Python and Web APIs in Flask\n",
  8. "\n",
  9. "This tutorial is split into two parts. Part One is a from the ground up tutorial on building a quick and dirty web API (and optionally RESTful) in Python using the [microframework Flask](). Part Two goes into a few of the details of Python data structures assuming you know a few from another language (e.g. Javascript, etc.).\n",
  10. "\n",
  11. "| Part | |\n",
  12. "|:---:|:---|\n",
  13. "|[Part One](./part1_flaskwebapi.ipynb) | Learn how to build a simple Python web API in Flask. |\n",
  14. "|[Part Two](./part2_pythonds.ipynb) | Learn some of the basic Python data structures and Pythonic ways to use them. |\n",
  15. "\n",
  16. "\n",
  17. "Have fun!"
  18. ]
  19. }
  20. ],
  21. "metadata": {
  22. "anaconda-cloud": {},
  23. "kernelspec": {
  24. "display_name": "Python [conda root]",
  25. "language": "python",
  26. "name": "conda-root-py"
  27. },
  28. "language_info": {
  29. "codemirror_mode": {
  30. "name": "ipython",
  31. "version": 2
  32. },
  33. "file_extension": ".py",
  34. "mimetype": "text/x-python",
  35. "name": "python",
  36. "nbconvert_exporter": "python",
  37. "pygments_lexer": "ipython2",
  38. "version": "2.7.12"
  39. }
  40. },
  41. "nbformat": 4,
  42. "nbformat_minor": 1
  43. }