Python Bytes
https://pythonbytes.fm/episodes/show/21/python-has-a-new-star-framework-for-restful-apis
PyMOTW 3, API Star, Python slowness, hashing, wedding automation, Alexa skills in Python.
- Python 3 Module of the Week (PyMOTW 3)
- Written by Doug Hellmann; same format as PyMOTW but now focused on Python 3
- Recently covered profiling / performance analysis with
profile
,cProfile
, andpstats
- Python 2 - https://pymotw.com/2/profile/
- Python 3 - https://pymotw.com/3/profile/
- Pyramid has a debug toolbar with request profiling
- https://github.com/tomchristie/apistar
- Tom Christie's new experimental Python 3-first web framework which makes use of type annotations throughout
- Faster than Sanic
- Yes, Python is Slow, and I Don’t Care – Hacker Noon
- You can write code
fastermore quickly in Python and developer time is more expensive than CPU time - Python is usually not the bottleneck, but when things are slow you have options (profile, optimize, swap interpreter, etc)
- A Quick Introduction: Hashing – Hacker Noon
- Fingerprinting static content for caching on the web
- Wedding at Scale: How I Used Twilio, Python and Google to Automate My Wedding
- Collects contact info of wedding attendees in a Google Sheet accessed via gspread, then uses Twilio to notify guests for RSVP, with text responses processed by a Flask app
- python-alexa: A Python framework for Alexa Development
- https://github.com/nmyster/python-alexa
- A framework for creating Alexa skills in Python created by Neil Stewart