forked from netology-code/shvirtd-example-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
55 lines (46 loc) · 1.46 KB
/
main.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from flask import Flask
from flask import request
import os
import mysql.connector
from datetime import datetime
app = Flask(__name__)
db_host=os.environ.get('DB_HOST')
db_user=os.environ.get('DB_USER')
db_password=os.environ.get('DB_PASSWORD')
db_database=os.environ.get('DB_NAME')
db_table=os.environ.get('DB_TABLE')
# Подключение к базе данных MySQL
db = mysql.connector.connect(
host=db_host,
user=db_user,
password=db_password,
database=db_database,
autocommit=True )
cursor = db.cursor()
# SQL-запрос для создания таблицы в БД
create_table_query = f"""
CREATE TABLE IF NOT EXISTS {db_database}.{db_table} (
id INT AUTO_INCREMENT PRIMARY KEY,
request_date DATETIME,
request_ip VARCHAR(255)
)
"""
cursor.execute(create_table_query)
#Вывод списка таблиц в БД
cursor.execute("SHOW TABLES;")
result = cursor.fetchall()
print("SHOW LIST TABLES: ",result)
@app.route('/')
def index():
# Получение IP-адреса пользователя
ip_address = request.headers.get('X-Forwarded-For')
# Запись в базу данных
now = datetime.now()
current_time = now.strftime("%Y-%m-%d %H:%M:%S")
query = f"INSERT INTO {db_table} (request_date, request_ip) VALUES (%s, %s)"
values = (current_time, ip_address)
cursor.execute(query, values)
db.commit()
return f'TIME: {current_time}, IP: {ip_address}'
if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0')