일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 생성형
- 생성형 AI
- LLaMa
- 리트코드
- fastapi
- vue.js
- 머신러닝
- 메세지큐
- 컨설턴트
- SpringBoot
- Redis
- 오픈시프트
- 쿠버네티스
- BFS
- jpa
- kubernetes
- 솔루션조사
- 로깅
- OpenShift
- Machine Learning
- GPT
- 컨설팅
- 도커
- vuejs
- fast api
- k8s
- Python
- Docker
- LeetCode
- POD
- Today
- Total
목록Python (3)
수 많은 우문은 현답을 만든다
개요이번엔 Fast API 서비스와 Database를 연동하는 작업을 해보겠다. 데이터베이스 설치개발하려는 서비스 요건상 JSON 포맷을 써야하는 데이터가 많기 때문에 MongoDB를 설치하자. 1. 다운로드Download MongoDB Community Server | MongoDB Try MongoDB Community EditionTry MongoDB Community Edition on premise non-relational database including the Community Server and Community Kubernetes Operator for your next big project!www.mongodb.com위 링크에 접속해서 .msi 파일을 받는다. 2. 환경 설정특별한 변..
개요Python과 Fast API를 사용해서 json 형태의 API를 제공하는 서비스를 개발하려고 한다.오늘은 API 요청의 가장 기본이 되는 JWT(Json Web Token) 방식을 구현해보고 자세한 과정들을 기록해 공유하고자 한다. 환경 구성우선 아래 라이브러리들을 설치해준다.pip install fastapipip install uvicornpip install pyjwt1. fastapi : python 3.6 이상에서 동작하는 경량, 고성능 백엔드 프레임워크2. uvicorn : FastAPI를 실행하기 위한 ASGI 서버 * ASGI(Asynchronous Server Gateway Interface) : 비동기 웹서버 * WSGI(Web Server Gateway Interface) :..
안녕하세요, 조영호입니다. Hi, Today I am going to share the basic grammar of Python programming language. Python is commonly used for NLP(Natural Language Processing) and Big-data processing. Actually, I use JAVA programming language usually but I studied Python at this time to be ready for extending my skill. I prepared important points of python grammar. Remark for Korean (한글 주석) # -*- coding: utf-8 -*- ..