摘要:
lua http post json local http=require("socket.http"); local cjson = require("cjson") local ltn12 = require("ltn12") local response_body = {} local req 阅读全文
摘要:
import requests import re import time from bs4 import BeautifulSoup import csv import xlrd from xlutils.copy import copy import random ##屏蔽https错误 req 阅读全文
摘要:
线性回归是利用数理统计中回归分析,来确定两种或两种以上变量间相互依赖的定量关系的一种统计分析方法简单说:可以根据两个或一个变量,预测另一个变量的值 import pandas as pd import numpy as np from matplotlib import pyplot as plt 阅读全文
摘要:
今天安装了luasocket,遇到了很多错误,百度并没有什么针对lua5.3的版本安装luasocket的文章,在这里记录一下。 1、下载lua5.3 下载到了lua-5.3.5.tar.gz版本的lua后,在centos中进行解压,然后make linux && make install 使用wh 阅读全文
摘要:
import requests from bs4 import BeautifulSoup import re from lxml import etree import time import csv requests.packages.urllib3.disable_warnings() #需要 阅读全文