일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- 부트스트랩 #Bootstrap #웹개발첫걸음 #스파르타코딩클럽
- #내일배움단 #코딩프로젝트 #국비지원 #내일배움카드 #스파르타코딩클럽
- 항해99솔직후기 #항해99 #부트캠프추천
- 스파르타코딩클럽 #코딩 #jQuery #Ajax
- 스파르타코딩클럽 #크롤링 #스크래핑
- Today
- Total
목록coding (165)
이모저모
디버깅에서는 캐싱 시간을 짧게 하기 위한 분기처리:) from flask import Flask, render_template def create_app(): print("run:create_app()") app = Flask(__name__) # 이 조건을 달지 않으면, css같은 사항 변화를 12시간마다 체크한다. 즉 디버깅모드에서는 불편하므로, 디버깅시에는 1초로 변경하는 것. if app.config['DEBUG']: app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 1 @app.route('/') def index(): return render_template("index.html") @app.errorhandler(404) def page_404(error): retu..
from flask import Flask db = "database" def create_app(): print("run:create_app()") app = Flask(__name__) @app.route('/') def index(): app.logger.info('RUN: HELLOWORLD') return "hello" '''routing practice''' ''' === Routing Practice === ''' from flask import jsonify, redirect, url_for from markupsafe import escape @app.route('/test/name/') def name(name): return f'Name is {name}, {escape(type(na..
# this is "__init__.py" from flask import Flask db = "database" def create_app(): print("run:create_app()") app = Flask(__name__) @app.route('/') def index(): return "hello" '''routing practice''' ''' === Routing Practice === ''' from flask import jsonify, redirect, url_for from markupsafe import escape @app.route('/test/name/') def name(name): return f'Name is {name}, {escape(type(name))}' @app..
from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.common.keys import Keys import time import os import pyperclip chrome = webdriver.Chrome('./chromedriver') wait = WebDriverWait(chrome, 10) short_wait = WebDriverWait(chrome, 3) ..
selenium.common.exceptions.ElementNotInteractableException - 이와 같은 에러가 나는 이유 : presence만 확인해서는 해당 요소와 interaction할 준비가 안 되어 있을 수 있다. - 대안: visibility로 확인하기 from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.common.keys import Key..
from selenium import webdriver import time from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC options = webdriver.ChromeOptions() options.add_argument("window-size=1000,1000") options.add_argument("no-sandbox") # options.add_argument("headless") # 화면 띄우기 없음 chrome = webdriver.Chrome(..