All Projects β†’ mikeckennedy β†’ restful-services-in-pyramid

mikeckennedy / restful-services-in-pyramid

Licence: MIT license
RESTful / HTTP services in Pyramid and Python course handout materials

Programming Languages

python
139335 projects - #7 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to restful-services-in-pyramid

Clevergo
πŸ‘… CleverGo is a lightweight, feature rich and high performance HTTP router for Go.
Stars: ✭ 246 (+339.29%)
Mutual labels:  restful, restful-api
Videosniffer
θ§†ι’‘ε—…ζŽ’ζœεŠ‘(VideoSniffer API Service On Android)
Stars: ✭ 68 (+21.43%)
Mutual labels:  service, restful
Http Fake Backend
Build a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.
Stars: ✭ 253 (+351.79%)
Mutual labels:  restful, restful-api
Blogbackendproject
Backend code for my blogs, develop with Django Rest framework.
Stars: ✭ 204 (+264.29%)
Mutual labels:  restful, restful-api
HttpServerLite
TCP-based simple HTTP and HTTPS server, written in C#.
Stars: ✭ 44 (-21.43%)
Mutual labels:  restful, restful-api
Flight
An extensible micro-framework for PHP
Stars: ✭ 2,396 (+4178.57%)
Mutual labels:  restful, restful-api
Eve Building Restful Mongodb Backed Apis Course
Course materials and handouts for EVE: Building RESTful MongoDB-backed APIs course
Stars: ✭ 53 (-5.36%)
Mutual labels:  service, restful
Graphql2rest
GraphQL to REST converter: automatically generate a RESTful API from your existing GraphQL API
Stars: ✭ 181 (+223.21%)
Mutual labels:  restful, restful-api
airad
Beego based Restful API service
Stars: ✭ 63 (+12.5%)
Mutual labels:  service, restful-api
tinyspec
Simple syntax for describing REST APIs
Stars: ✭ 95 (+69.64%)
Mutual labels:  restful, restful-api
gothic
πŸ¦‡ Gothic is a user registration and authentication SWT/JWT microservice. It supports REST, gRPC, and gRPC Web API, reCAPTCHA & a variety of DBs with Gorm.
Stars: ✭ 65 (+16.07%)
Mutual labels:  restful, restful-api
gorest
Go RESTful API starter kit with Gin, JWT, GORM (MySQL, PostgreSQL, SQLite), Redis, Mongo, 2FA, email verification, password recovery
Stars: ✭ 135 (+141.07%)
Mutual labels:  restful, restful-api
Rest Crud
RESTFul CRUD Example with Node.js and Mysql
Stars: ✭ 188 (+235.71%)
Mutual labels:  restful, restful-api
Jersey 2.x User Guide
Jersey 2.x User Guideγ€ŠJersey 2.x η”¨ζˆ·ζŒ‡ε—γ€‹ οΌŒδΈ­ζ–‡ηΏ»θ―‘
Stars: ✭ 235 (+319.64%)
Mutual labels:  restful, restful-api
Nodejs Master Class
πŸ›  This repository contains the homework assignment for Node.js Master Class that is focused on building a RESTful API, web app GUI, and a CLI in plain Node JS with no NPM or 3rd-party libraries
Stars: ✭ 182 (+225%)
Mutual labels:  restful, restful-api
Typescript Rest
This is a lightweight annotation-based expressjs extension for typescript.
Stars: ✭ 458 (+717.86%)
Mutual labels:  service, restful
Restful Api With Laravel Definitive Guide
Repository with the base code for the course "RESTful API with Laravel - Definitive-Guide"
Stars: ✭ 156 (+178.57%)
Mutual labels:  restful, restful-api
Eddi
Scalable Open Source Chatbot Platform. Build multiple Chatbots with NLP, Behavior Rules, API Connector, Templating. Developed in Java, provided with Docker, orchestrated with Kubernetes or Openshift.
Stars: ✭ 171 (+205.36%)
Mutual labels:  restful, restful-api
go-zero
A cloud-native Go microservices framework with cli tool for productivity.
Stars: ✭ 23,294 (+41496.43%)
Mutual labels:  restful, restful-api
swagger-brake
Swagger contract checker for breaking API changes
Stars: ✭ 49 (-12.5%)
Mutual labels:  restful, restful-api

RESTful and HTTP services in Pyramid demos

RESTful and HTTP services in Pyramid and Python course materials from Talk Python Training.

course image: RESTful and HTTP services in Pyramid

Course Summary

Whether you're adding an API to an existing web application, creating a new API for a JavaScript heavy client-side app, or even building a backend service for a mobile app, this course will show you how to build RESTful services using Pyramid and integrate with a real database over SQLAlchemy.

What students are saying

Let me say that your courses are tremendous and I am a huge fan. I had tried a few different online learning platforms (edx, datacamp), so when I found your Python Jumpstart, I decided to finally give a paid course a try. Your courses strike an excellent balance between hand-holding and DIY, and they suit my learning style perfectly. [...] I'm a lifetime customer. Thank you for the great content, I appreciate the work you're doing. -- Josh

What's this course about and how is it different?

This course will teach you how to build RESTful and HTTP-based services in Python using the Pyramid web framework.

Yes, you will learn the necessary programming techniques. But we will go much deeper than just stringing together some methods in your web framework. In this course, you will

  • Compare RESTful services to other services such as SOAP and sockets
  • Fully understand how to leverage HTTP verbs, status codes, content types, and URLs to properly design and deliver RESTful services
  • Add JSON, CSV, image, and other response types to services
  • Explore and test your services using the Postman application
  • Add content negotiation to allow clients to select the best response type
  • Properly refactor your service code for maintainability using view models and more
  • Work with SQLAlchemy as the backend for your web services
  • Deploy your HTTP service for production behind NGINX and uWSGI

Who is this course for?

Anyone who knows Python and would like to use Python to create flexible and high performance RESTful or HTTP-based web services.

Whether you need a backend for your mobile app, rich JavaScript app, or want add an API to your existing Pyramid web application, this course will teach you the concepts as well as the programming techniques to implement them.

What will you learn in this course?

Some topics covered include.

  • Setting up Python 3, Postman, and PyCharm for local development
  • The concepts and principles of RESTful services
  • Key building blocks of the Pyramid web framework
  • Building a comprehensive service using HTTP verbs, status codes, content types, and more
  • Adding content negotiation to services
  • Enforce identity and authorization using API keys
  • How to call your service from Python and from JavaScript
  • Add CORS support for cross-site access
  • The basics of SQLAlchemy for backing our services with a database
  • How to add logging and production-time monitoring of errors
  • Deploying your service on Linux behind NGINX and uWSGI for a full production capable deployment

Is this course based on Python 3 or Python 2?

This course is based upon Python 3. With Python 2 going unsupported in 2020, we believe that it would be ill-advised to teach or learn Python 2.

The time to act is now

Go beyond just learning how to build RESTful services. Deeply understand them and build better services. Register for the course at:

https://training.talkpython.fm/courses/explore_restful_pyramid_course/creating-a-restful-http-api-with-pyramid-and-python-mega-course

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].