Python Resources
Version 4 (J. Simmons, 06/11/2017 02:43 pm)
| 1 | 1 | J. Simmons | h1. Python Resources |
|---|---|---|---|
| 2 | 1 | J. Simmons | |
| 3 | 1 | J. Simmons | {{>toc}} |
| 4 | 1 | J. Simmons | |
| 5 | 2 | J. Simmons | h2. Microservices in Python |
| 6 | 2 | J. Simmons | |
| 7 | 2 | J. Simmons | * "Example of Microservices in Python":https://github.com/umermansoor/microservices - primary example driving v0.4 development |
| 8 | 2 | J. Simmons | * "Crafting Effective Microservices in Python":https://tech.zalando.com/blog/crafting-effective-microservices-in-python/ |
| 9 | 2 | J. Simmons | * Building Microservices with Python |
| 10 | 2 | J. Simmons | ** "Part 1":https://medium.com/@ssola/building-microservices-with-python-part-i-5240a8dcc2fb |
| 11 | 2 | J. Simmons | ** "Part 2":https://medium.com/@ssola/building-microservices-with-python-part-2-9f951199094a |
| 12 | 2 | J. Simmons | ** "Part 3":https://medium.com/@ssola/building-microservices-with-python-part-3-a556a4c4bc00 |
| 13 | 2 | J. Simmons | |
| 14 | 3 | J. Simmons | h2. Python Service Management |
| 15 | 3 | J. Simmons | |
| 16 | 3 | J. Simmons | * "usrsvc":https://github.com/kata198/usrsvc |
| 17 | 4 | J. Simmons | * "monitoring":https://github.com/sebastien/monitoring - "slides discussing monitoring (then watchdog)":https://www.slideshare.net/mobile/ffunction/fabric-cuisine-and-watchdog-for-server-administration-in-python |
| 18 | 4 | J. Simmons | |
| 19 | 4 | J. Simmons | h2. REST |
| 20 | 4 | J. Simmons | |
| 21 | 4 | J. Simmons | h3. Client Libraries |
| 22 | 4 | J. Simmons | |
| 23 | 4 | J. Simmons | * "Siesta":http://scastillo.sh/siesta/ |
| 24 | 4 | J. Simmons | * "Requests":https://pypi.python.org/pypi/requests |
| 25 | 4 | J. Simmons | |
| 26 | 4 | J. Simmons | h3. Developing REST APIs |
| 27 | 4 | J. Simmons | |
| 28 | 4 | J. Simmons | * "Best Practices REST API from Scratch - Introduction":https://www.sitepoint.com/best-practices-rest-api-scratch-introduction/ |
| 29 | 4 | J. Simmons | * "Learn REST: A RESTful Tutorial":http://www.restapitutorial.com |
| 30 | 3 | J. Simmons | |
| 31 | 1 | J. Simmons | h2. Multi-Threading |
| 32 | 1 | J. Simmons | |
| 33 | 1 | J. Simmons | * "Running a method as a background thread in Python":http://sebastiandahlgren.se/2014/06/27/running-a-method-as-a-background-thread-in-python/ |
| 34 | 1 | J. Simmons | * "threading interface in Python (official docs)":https://docs.python.org/2/library/threading.html |
| 35 | 1 | J. Simmons | * "Daemon Threads Explanation (stack overflow)":https://stackoverflow.com/questions/190010/daemon-threads-explanation |