Flask docking AI (iFlytek Spark API)

1. Example pictures 2. Key points 1. iFlytek Spark Cognitive Large Model-AI Large Language Model-Spark Large Model-HKUST iFlytek website to apply for registration for free and obtain APPID, APISecret, APIKey. 2. Prepare the flask environment, copy the code and run AI.py 3. Code index.html under templates <!DOCTYPE HTML> <html> <script src=”//i2.wp.com/cdn.staticfile.org/jquery/2.1.1/jquery.min.js”></script> <body bgcolor=”#EEEEFE” > <p […]

Framework security-CVE vulnerability recurrence&Django&Flask&Node.js&JQuery framework vulnerability recurrence

Directory Service Attack and Defense – Framework Security &CVE Recurrence &Django &Flask &Node.JS &JQuery Vulnerability Recurrence Introduction to middleware list Common language development frameworks Python development framework security-Django & Flask vulnerability recurrence Django development framework Vulnerability recurrence CVE-2019-14234 (Django JSONField/HStoreField SQL injection vulnerability) CVE-2021-35042 (Django QuerySet.order_by SQL injection vulnerability) Flask Jinja2 SSTI Vulnerability recurrence Flask […]

Python third-party library – Flask (python web framework)

1 Flask 1.1 Getting to know Flask Web Application Framework ( Web Application Framework) or simply Web Framework ( Web Framework) represents a library and A collection of modules that enables Web application developers to write applications without having to worry about low-level details such as protocols, thread management, etc. 1.2 Pycharm installation and simple […]

Graduation project – distributed real-time log analysis and intrusion detection system based on Flume+spark+Flask

Distributed real-time log analysis and intrusion detection system based on Flume + spark + Flask Introduction LogVision is a log analysis solution that integrates web log aggregation, distribution, real-time analysis, intrusion detection, data storage and visualization. Apache Flume is used for aggregation, Apache Kafka is used for distribution, Spark Streaming is used for real-time processing, […]

Relevant steps for sending email verification codes through flask-mail and asynchronous processing and sending emails through Celery

Relevant steps for sending email verification codes and verification through flask-mail and asynchronous processing and sending emails through Celery 1. Send emails through flask-mail 1.1 Install the flask-mail package in the terminal` 1.2 Configure mail server 1.3 Send email 1.3.1 Create Flask-Mail instance 1.3.2 Send email 2. Cache verification code 2.1 Install and create cache […]

Use docker to quickly deploy flask interface services 1

Article directory 1: Description 2: Dockerfile parameter description 1. Commonly used parameters and their meanings 2. My own dockerfile Three: Example operation 1.1 Before starting, get to know the Gunicorn + Gevent startup service 1. Benefits of using Gunicorn + Gevent: 2. Gunicorn + Gevent usage example 1.2. My own `gunicorn.conf.py` and generate log files […]

Python’s Flask framework receives ajax post type data and get type data from the front end.

ajax sends data to the background: ①post method ajax: <strong>@app.route(“/find_worldByName”,methods=[‘POST’])</strong> <strong>type:’post’,</strong> <strong>data:{‘cname’:cname,’continent’:continent},<br>This is the post method of passing value<br>Then receiving in the background is: (use the form method of request)<br></strong> <strong>continent = request.form.get(“continent”)</strong> <strong>cname = request.form.get(“cname”)</strong> ②get method (url parameter) Use the values method of request <strong>data:{‘cname’:cname,’continent’:continent},<br></strong> <strong>name=request.values.get(“cname”)<br><br><br>Summarize:<br></strong>The difference between the two is that the […]

Python-flask advanced use

Article directory 1. Python-flask uses database Step 1: Install the package first Install flask-sqlalchemy (for ORM): Install flask-migrate (for data migration): Install pymysql (MySQL driver): Step 2: Configure in __init__ Step 3: Plug-in Management Step 1: Create a new py: for managing plug-ins Step 2: Initialize the plug-in Step 4: Create a new model class […]

Integration of Flask project log

1. Introduction of log In the project’s init.py file: import logging from logging.handlers import RotatingFileHandler from flask_wtf.csrf import CSRFProtect from flask import Flask from flask_sqlalchemy import SQLAlchemy from redis import StrictRedis from flask_session import Session from config import config_dict #Define redis_store variable redis_store = None def create_app(config_name): # Call the log method to record program […]