1、Python语言产生网站的方法 python -m http.server 1 用http://127.0.0.1:8000即可访问目录下内容(默认端口8000) 或者加上端口号: python -m http.server 80 1 #用http://127.0.0.1即可访问目录下内容 2、go 语言产生网站给方法 用编辑器输入如面的代码,存入文件 www.go package main import "net/http...
python 测试网站并发情况 技术标签: python 开发语言 http#coding=utf-8 import requests import json import threading import time import uuid class postrequests(): def __init__(self): self.url = 'http://www.baidu.com' #请求链接 self.data = {} #传递参数 self.headers = {'content-type': '...