python + it blog python msa Build a Todo App Using a Microservices Architecture and Use Auth Service to Protect Its RoutesIn part one I showed how to build an auth microservices using Django, protecting his routes with a decorator to verify if the user is authorized to interact with his views. If you missed it, take a… wono | discuss | tweet + it blog python msa How To Protect Your MicroservicesWhen I started learning about microservices I wondered how I could protect the services and be sure the user was authorized to use the APIs. I was pretty confident about how to structure an… wono | discuss | tweet + it dev python msa An Authentication Pattern for microservices using DjangoHow can we design the authentication for microservices written in Django following one of its main principles ? Most of early stage APIs are developed using a monolithic architecture, meaning that… wono | discuss | tweet + it dev python fastapi Python and FastAPI tutorial in Visual Studio CodePython FastAPI tutorial showing IntelliSense and debugging support in Visual Studio Code, the best Python IDE. wono | discuss | tweet + it dev python fastapi 4-09 Gunicorn 사용하기운영 환경에서 FastAPI 서버를 구동하기 위해서는 AWS 터미널에서 다음과 같은 명령을 실행해야 한다. ```no-highlight $ uvicorn main:app --r… wono | discuss | tweet + it dev python fastapi FastAPI의 Uvicorn + Gunicorn 결합은 반드시 필요한 것인가?개요 FastAPI는 비동기 프레임워크로 ASGI 서버를 지원하는 Uvicorn 과 함께 기동되어 사용된다. 다른 Flask, Django와 비교하여 성능이 2배정도 빠르다고 알려져있다. 하지만 성능이 빠르다고한들 개발자가 사용방법을 모르고 개발한다면 제대로 된 성능을 끌어올리기에는 어려움이 있을 수 있다. 우리는 정말 제대로 알고 사용하고 있는것인가? 이번 포스팅에서는 Uvicorn이 반드시 Guicorn과 결합이 필요한지에 대하여 알아보고자한다. 배경지식 Gunicorn이란 무엇인가? Gunicorn 은 WSGI 프로토콜을 사용하여 웹 애플리케이션과 상호 작용하는 서버이자 프로세스 관리자이다. Flask 또는 Django 와 같은 WSGI 동기식 웹 프레임워크로 작성된 애플리케이션을 제공한다. Gun.. wono | discuss | tweet + it dev python fastapi Gunicorn, Uvicorn 그리고 Fas.. : 네이버블로그 wono | discuss | tweet + it dev python fastapi [배포] Python ASGI 배포 서버 종류 비교Python ASGI 배포 서버Python에서 웹 어플리케이션(Django, FastAPI, Flask 등)을 배포시 비동기 요청 처리를 위해, ASGI 서버를 사용하여 배포하게 되는데, Python 기반의 ASGI 서버들을 비교해보며, 종류와 특징에 대해 알아 본다. 주로 많이 언급되는 건 다음과 같다.Uvicorn (asyncio, uvloop)DaphneHypercornStarlette 사실 결론부터 말하자면, 사용하는 프레임워크나 기능에 따라 배포 서버에 대한 선택지가 한정적인 것으로 생각되는데 FastAPI로 배포를 희망→ 공식문서에서 지원하는 Uvicorn이나 Hypercorn 을 쓰는 것이 일반적 Django / Flask 에 Websocket 프로토콜 처리가 필요→ Daphne 이 적절 .. wono | discuss | tweet + it dev python fastapi 첫걸음 - FastAPIFastAPI framework, high performance, easy to learn, fast to code, ready for production wono | discuss | tweet + it dev python 파이썬 웹 프레임워크 비교 - Django, Flask, FastAPI 알아보기세바스티안 라미레즈Sebastián Ramírez가 2018년에 발표한 모던 파이썬 웹 프레임워크, FastAPI는 Flask (플라스크)와 Django (장고)를 따라 빠르게 성장했다. 깃허브 스타 수를 기준으로 보면, 2023년 말에 FastAPI가 Flask를 앞지르면서 두 번... wono | discuss | tweet + it qa nestjs nextjs python Next.Js with Python or Nest.JS? : r/nextjs wono | discuss | tweet + it dev python yolo lprnet klp GitHub - RoadoneP/Korean_license_plate_recognition: Recognition KLP using Yolov4 + LPRnet🔥🔥Recognition KLP using Yolov4 + LPRnet🔥🔥. Contribute to RoadoneP/Korean_license_plate_recognition development by creating an account on GitHub. wono | discuss | tweet + it dev python easyocr anpr Automatic Number Plate Recognition System using EasyOCR - GeeksforGeeksA Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. wono | discuss | tweet + python 파이썬 자습서 파이썬 자습서파이썬은 배우기 쉽고, 강력한 프로그래밍 언어입니다. 효율적인 자료 구조들과 객체 지향 프로그래밍에 대해 간단하고도 효과적인 접근법을 제공합니다. 우아한 문법과 동적 타이핑(typing)은, 인터프리터 적인 특징들과 더불어, 대부분 플랫폼과 다양한 문제 영역에서 스크립트 작성과 빠른 응용 프로그램 개발에 이상적인 환경을 제공합니다. The Python... wono | discuss | tweet + 프로그래밍 파이썬 python 파이썬 - 나무위키 wono | discuss | tweet
+ it blog python msa Build a Todo App Using a Microservices Architecture and Use Auth Service to Protect Its RoutesIn part one I showed how to build an auth microservices using Django, protecting his routes with a decorator to verify if the user is authorized to interact with his views. If you missed it, take a… wono | discuss | tweet
+ it blog python msa How To Protect Your MicroservicesWhen I started learning about microservices I wondered how I could protect the services and be sure the user was authorized to use the APIs. I was pretty confident about how to structure an… wono | discuss | tweet
+ it dev python msa An Authentication Pattern for microservices using DjangoHow can we design the authentication for microservices written in Django following one of its main principles ? Most of early stage APIs are developed using a monolithic architecture, meaning that… wono | discuss | tweet
+ it dev python fastapi Python and FastAPI tutorial in Visual Studio CodePython FastAPI tutorial showing IntelliSense and debugging support in Visual Studio Code, the best Python IDE. wono | discuss | tweet
+ it dev python fastapi 4-09 Gunicorn 사용하기운영 환경에서 FastAPI 서버를 구동하기 위해서는 AWS 터미널에서 다음과 같은 명령을 실행해야 한다. ```no-highlight $ uvicorn main:app --r… wono | discuss | tweet
+ it dev python fastapi FastAPI의 Uvicorn + Gunicorn 결합은 반드시 필요한 것인가?개요 FastAPI는 비동기 프레임워크로 ASGI 서버를 지원하는 Uvicorn 과 함께 기동되어 사용된다. 다른 Flask, Django와 비교하여 성능이 2배정도 빠르다고 알려져있다. 하지만 성능이 빠르다고한들 개발자가 사용방법을 모르고 개발한다면 제대로 된 성능을 끌어올리기에는 어려움이 있을 수 있다. 우리는 정말 제대로 알고 사용하고 있는것인가? 이번 포스팅에서는 Uvicorn이 반드시 Guicorn과 결합이 필요한지에 대하여 알아보고자한다. 배경지식 Gunicorn이란 무엇인가? Gunicorn 은 WSGI 프로토콜을 사용하여 웹 애플리케이션과 상호 작용하는 서버이자 프로세스 관리자이다. Flask 또는 Django 와 같은 WSGI 동기식 웹 프레임워크로 작성된 애플리케이션을 제공한다. Gun.. wono | discuss | tweet
+ it dev python fastapi [배포] Python ASGI 배포 서버 종류 비교Python ASGI 배포 서버Python에서 웹 어플리케이션(Django, FastAPI, Flask 등)을 배포시 비동기 요청 처리를 위해, ASGI 서버를 사용하여 배포하게 되는데, Python 기반의 ASGI 서버들을 비교해보며, 종류와 특징에 대해 알아 본다. 주로 많이 언급되는 건 다음과 같다.Uvicorn (asyncio, uvloop)DaphneHypercornStarlette 사실 결론부터 말하자면, 사용하는 프레임워크나 기능에 따라 배포 서버에 대한 선택지가 한정적인 것으로 생각되는데 FastAPI로 배포를 희망→ 공식문서에서 지원하는 Uvicorn이나 Hypercorn 을 쓰는 것이 일반적 Django / Flask 에 Websocket 프로토콜 처리가 필요→ Daphne 이 적절 .. wono | discuss | tweet
+ it dev python fastapi 첫걸음 - FastAPIFastAPI framework, high performance, easy to learn, fast to code, ready for production wono | discuss | tweet
+ it dev python 파이썬 웹 프레임워크 비교 - Django, Flask, FastAPI 알아보기세바스티안 라미레즈Sebastián Ramírez가 2018년에 발표한 모던 파이썬 웹 프레임워크, FastAPI는 Flask (플라스크)와 Django (장고)를 따라 빠르게 성장했다. 깃허브 스타 수를 기준으로 보면, 2023년 말에 FastAPI가 Flask를 앞지르면서 두 번... wono | discuss | tweet
+ it dev python yolo lprnet klp GitHub - RoadoneP/Korean_license_plate_recognition: Recognition KLP using Yolov4 + LPRnet🔥🔥Recognition KLP using Yolov4 + LPRnet🔥🔥. Contribute to RoadoneP/Korean_license_plate_recognition development by creating an account on GitHub. wono | discuss | tweet
+ it dev python easyocr anpr Automatic Number Plate Recognition System using EasyOCR - GeeksforGeeksA Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. wono | discuss | tweet
+ python 파이썬 자습서 파이썬 자습서파이썬은 배우기 쉽고, 강력한 프로그래밍 언어입니다. 효율적인 자료 구조들과 객체 지향 프로그래밍에 대해 간단하고도 효과적인 접근법을 제공합니다. 우아한 문법과 동적 타이핑(typing)은, 인터프리터 적인 특징들과 더불어, 대부분 플랫폼과 다양한 문제 영역에서 스크립트 작성과 빠른 응용 프로그램 개발에 이상적인 환경을 제공합니다. The Python... wono | discuss | tweet