上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 54 下一页
摘要: NetTerm,共享软件,网络终端仿真软件。 1,解压netterm压缩包之后,运行netftpd.exe文件来启动服务。 2,打开cmd.exe框。 3,ftp 10.130.1.1 同一网络内的启动netterm服务的电脑的ip(一般要两台电脑配合使用),回车之后提示连接到10.130.1.1 阅读全文
posted @ 2020-05-08 20:00 aaronthon 阅读(452) 评论(0) 推荐(0) 编辑
摘要: Gin框架必须配置完路径才能访问静态文件 // gindemo.gopackage main import ( "net/http" "github.com/gin-gonic/gin" ) func main() { // 创建一个默认的路由引擎 r := gin.Default() // 配置模 阅读全文
posted @ 2020-04-29 15:45 aaronthon 阅读(18237) 评论(0) 推荐(1) 编辑
摘要: 内置包net/http。 // 服务端package main import ( "fmt" "net/http" ) // http server func sayHello(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w, "He 阅读全文
posted @ 2020-04-26 20:00 aaronthon 阅读(258) 评论(0) 推荐(0) 编辑
摘要: python使用xlrd模块可以读取xls和xlsx文件. import xlrd import os file_addr = "E://test.xlsx" # xlsx文件存在 if os.path.exists(file_addr): # 读取内容 xls_file = xlrd.open_w 阅读全文
posted @ 2020-04-24 17:36 aaronthon 阅读(749) 评论(0) 推荐(0) 编辑
摘要: mysql -h 10.130.**.** -u username -p 输入密码. 阅读全文
posted @ 2020-04-21 15:47 aaronthon 阅读(1857) 评论(0) 推荐(0) 编辑
摘要: 一 方法 selenium为定位元素提供了较多方法,大致分为单元素定位和多元素定位. # 查找单个元素:find_element_by_id find_element_by_name find_element_by_xpath find_element_by_link_text find_eleme 阅读全文
posted @ 2020-04-20 20:31 aaronthon 阅读(34786) 评论(0) 推荐(1) 编辑
摘要: selenium是一款用于web程序的测试工具,它能直接调用控制浏览器,就像用户操作浏览器一样,多用于爬虫等. 官方文档: https://selenium-python.readthedocs.io/index.html 一 安装 # 安装seleniumpip install selenium 阅读全文
posted @ 2020-04-20 17:26 aaronthon 阅读(347) 评论(0) 推荐(0) 编辑
摘要: <div><a href="http://sao315.com/w/api/saoyisao?redirect_url=http://****.com/rl?code=1">扫一扫</a></div> 当点击扫一扫按钮,会调用手机扫一扫功能。 注意:你自己的url可以携带一个参数,当参数大于一个时, 阅读全文
posted @ 2020-03-31 16:47 aaronthon 阅读(12093) 评论(0) 推荐(1) 编辑
摘要: 下载 pip install djangorestframework 使用 # 添加'rest_framework'到您的INSTALLED_APPS设置: INSTALLED_APPS = [ ... 'rest_framework', ] # 视图函数 app01/views.py from r 阅读全文
posted @ 2020-03-23 05:41 aaronthon 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 下载 下载地址:https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.29-linux-glibc2.12-x86_64.tar.gz 下载完成之后将文件传输到/opt目录里面。 1,直接拖拽文件到/opt 2,rz命令 没装lrzsz安装包,则无 阅读全文
posted @ 2020-03-19 23:35 aaronthon 阅读(254) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 54 下一页