from flask import Flask, request, render_template, redirect, url_for, sessionimport randomimport sqlite3import osimport webbrowserapp = Flask(__name__)app.secret_key = os.urandom(32)DATABASE = "scores.db"PROVERBS_FILE = 'static/사자성어.txt'# 파일 읽기with open(PROVERBS_FILE, 'r', encoding='utf-8') as file: lines = file.readlines()# 사자성어와 설명을 분리하여 저장proverbs = {}for line in lines: parts = line.str..
import randomfrom colorama import init, Fore, Styleimport webbrowserimport sqlite3init()# 파일 읽기file_path = 'D:\\최정훈\\python sia quiz\\사자성어 퀴즈\\사자성어.txt' with open(file_path, 'r', encoding='utf-8') as file: lines = file.readlines() # 사자성어와 설명을 분리하여 저장proverbs = {}for line in lines: parts = line.strip().split(':') if len(parts) == 2: proverbs[parts[0].strip()] = parts[1].strip()# 데..
- Total
- Today
- Yesterday
- tr
- BASE64
- SSL
- Natas
- 리눅스
- Linux
- 풀이
- 웹보안
- natas7
- Bandit
- 리터럴
- 32bit
- grep
- 웹보안공부
- nc
- over the wire
- Strings
- Encode
- ssh
- HTTPS
- X32
- tar
- 압축파일
- OverTheWire
- OpenSSL
- gz
- solution
- bz2
- java
- find
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |