摘要:
一、简单web框架WSGI:Web Server Gateway Interface一个简单的web框架:step1:#!/usr/bin/env python# -*- coding: utf-8 -*- from wsgiref.simple_server import make_serverdef application(environ,start_response): start_r... 阅读全文
摘要:
一、pymysql模块安装pip3 install pymysql二、连接数据库2.1、创建测试数据mysql> create database AA;mysql> use AAmysql> create table test(id int primary key auto_increment,name varchar(25),passwd varchar(25));mysql> insert i... 阅读全文