창구
$.ajax({
type: "GET",
url: "요청할 URL",
data: {},
success: function (response) {
}
})
서버를 만드는 프레임 워크 ("다른 사람들이 만들어 놓은 것을 가져다 쓰는 것")
기본 틀
from flask import Flask, render_template, jsonify, request
app = Flask(__name__)
@app.route('/')
def home():
return render_template('index.html')
if __name__ == '__main__':
app.run('0.0.0.0', port=5000, debug=True)
myname = '홍길동'
text = f'내 이름은 {myname}입니다.'
print(text)
from datetime import datetime
now = datetime.now()
print(now)
now = datetime.now()
print(now)
nohup python app.py &
ps -ef | grep 'app.py'
kill -9 [pid값]