본문 바로가기

Developing../Python21

Concurrency in python- Async IO 출처 : realpython.com/async-io-python/ Async IO in Python: A Complete Walkthrough – Real Python This tutorial will give you a firm grasp of Python’s approach to async IO, which is a concurrent programming design that has received dedicated support in Python, evolving rapidly from Python 3.4 through 3.7 (and probably beyond). realpython.com 2021. 2. 5.
ML module 을 REST api 배포하기 # 파이썬 자료는 realpython.com에서 꼭 찾아보자. [built API] building an API with Python ; realpython.com/flask-connexion-rest-api/ Python REST APIs With Flask, Connexion, and SQLAlchemy – Real Python How to create a Python-powered RESTful API from scratch using Flask and the Connexion library. Also covers automated validation and documentation for your API endpoints using the Swagger / OpenAPI standard. real.. 2021. 2. 5.
API tutorials in Python - REST API 중심으로 다룰 내용 What an API is and what can you use it for (web API 중심) What status codes, HTTP headers, and HTTP methods are How can you use Python to consume public data using APIs How to use authentication when consuming APIs with Python 주요 Web API SOAP (Simple Object Access Protocol) is typically associated with the enterprise world, has a stricter contract-based usage, and is mostly designed around a.. 2021. 2. 5.
Socket Programming in Python (Guide) - the low-level socket API in Python’s socket module to create client-server applications. - created our own custom class for an application-layer protocol to exchange messages and data between endpoints. # 소켓이란? 소켓(Socket)이란 네트워크상에서 동작하는 프로그램 간 통신의 종착점(Endpoint)입니다. 즉, 프로그램이 네트워크에서 데이터를 통신할 수 있도록 연결해주는 연결부. 데이터를 통신할 수 있도록 통신할 두 프로그램(Client, Server) 모두에 소켓이 생성되야 합니다. Endpoint : IP Address와 port .. 2021. 2. 5.