본문 바로가기

Python3

구니콘 (Gunicorn) 이란? 구니콘 공식 사이트 Gunicorn - Python WSGI HTTP Server for UNIX Deployment Gunicorn is a WSGI HTTP server. It is best to use Gunicorn behind an HTTP proxy server. We strongly advise you to use nginx. Here's an example to help you get started with using nginx: server { listen 80; server_name example.org; access_log /var gunicorn.org 구니콘이란 파이썬의 Web Server Gateway interface (WSGI)를 구현하는 HTTP server이다. 구니콘은 .. 2022. 4. 17.
# 0-0-5 22개의 필수적인 다양한 파이썬 문자열 메소드. [2022-02-19] Updated 22 ESSENTIAL Python String Methods. """ Tip : 22 ESSENTIAL Python String Methods Author : Python Engineer(Youtuber) Source Link : https://www.youtube.com/watch?v=HJpiAZDJrRY Date : This Document is Updated [2022-02-18] """ # python file name = string-methods.py """****************************************************************""" """ 1. Slicing 문자열내 해당 공간만 출력. """ example_string = ' hello ' exa.. 2022. 2. 18.
# 0-0-4 중복된 배열내 원소 값들을 지우는 두가지 방법. [2022-02-19] Updated """ Tip : 중복된 배열내 원소 값들을 지우는 두가지 방법. Author : Python Engineer(Youtuber) Source Link : https://www.youtube.com/watch?v=9YxudO_A_KA Date : This Document is Updated [2022-02-15] """ // Declare list array. duplicate_list = [56, 4, 81, 9, 56, 4] """****************************************************************************************""" // Simple way. print(duplicate_list) //Check Start Arr Element.. 2022. 2. 15.