본문 바로가기

Developing..72

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.
PEP 8 -- Style Guide & Structure 파이썬 변수명, 클래스명, 메소드명 마다 규칙이 있다. 코딩할 때, "예쁘게?"해야 협업할 때 , 관리할때 매우 유용하다. - 규칙성없이 코드 작성하면 매번 다시 코드를 짜야할 수 있으니 명심 www.python.org/dev/peps/pep-0008/ PEP 8 -- Style Guide for Python Code The official home of the Python Programming Language www.python.org 한국어 요약 블로그 규칙을 적용하지 않는 예외상황 규칙을 적용한 코드가 읽기 어려운 경우 일관성을 지키려고 한 수정이 다른 규칙을 어기는 경우 Naming Convention # 변수명에서 _(밑줄)은 위치에 따라 의미가 다름. _single_leading_undersc.. 2021. 2. 5.