摘要: https://blog.csdn.net/moluoyu/article/details/88936934 阅读全文
posted @ 2020-02-15 22:30 鱼虫光 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 工具:charles,手机模拟器(我用的是mumu模拟器) 经过一番实验,本菜鸟发现,要抓抖音的包,必须要登录,而且还得用手机模拟器 发现URL 后面就比较简单了,直接上代码: import json from time import time import requests from reques 阅读全文
posted @ 2020-02-14 15:24 鱼虫光 阅读(924) 评论(2) 推荐(0) 编辑
摘要: 下载去阿里云官方镜像 安装https://www.jianshu.com/p/55bb32be385e 设置root:https://www.cnblogs.com/lichengbei/p/12079185.html 设置sudo:https://www.jianshu.com/p/3d435e0 阅读全文
posted @ 2020-01-21 18:29 鱼虫光 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 安装: 下载,直接去pycharm官网下载linux版本 解压,到bin目录下找到pycharm.sh 运行安装pycharm vim /usr/share/applications/pycharm.desktop,chmod a+x /usr/share/applications/pycharm. 阅读全文
posted @ 2020-01-21 00:36 鱼虫光 阅读(536) 评论(0) 推荐(0) 编辑
摘要: pip3 install virtualenv pip3 install virtualenvwrapper # 1、创建目录用来存放虚拟环境 mkdir $HOME/.virtualenvs # 2、打开~/.bashrc文件,并添加如下: export WORKON_HOME=$HOME/.vi 阅读全文
posted @ 2020-01-20 23:14 鱼虫光 阅读(119) 评论(0) 推荐(0) 编辑
摘要: centos7的安装大家可以微信搜索软件安装管家,里面大多数用的软件都有详细安装教程 设置centos7设置配置静态ip并解决ping不通百度的问题:https://blog.csdn.net/qq_33355821/article/details/100667144 配置阿里云yum源:https 阅读全文
posted @ 2020-01-20 23:11 鱼虫光 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 本地操作: git add:提交文件目录到暂存区 git commit:提交文件到仓库区 git pull:拉代码 git push:提交代码到远程仓库 git status:查看文件状态 git log:查看历史记录 git reflog:查看所有记录,包括删除的 git reset:回退版本,跟 阅读全文
posted @ 2020-01-18 16:23 鱼虫光 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 文章转载自:https://blog.csdn.net/shabijiayong/article/details/79094438 总结为以下几条: 网址路径编码采用utf-8 查询字符串编码和操作系统编码一致 get和post方法用的是网页的编码 ajax调用的url包含汉字,ie采用GB2312 阅读全文
posted @ 2020-01-14 10:22 鱼虫光 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 列表 增加:append,insert,extend 删除:remove,pop,clear 修改: 查询:index,count 元组 查询:index,count *:解包操作 集合 增加:add 删除:pop(第一个),clear,remove 交集:& 并集:| 差集:set1-set2 对 阅读全文
posted @ 2020-01-10 21:21 鱼虫光 阅读(369) 评论(0) 推荐(0) 编辑
摘要: WSGI 什么是WSGI? wsgi 是一个 web 组件的接口规范(WSGI is the Web Server Gateway Interface. It is a specification that describes how a web server communicates with w 阅读全文
posted @ 2020-01-03 23:29 鱼虫光 阅读(211) 评论(0) 推荐(0) 编辑