代码学习

[宅男福利] 电影天堂最新合集、搜索脚本 [原创]

宅男福利第四波 带你逃离无止境的广告多线程电影天堂最新资源爬取脚本、电影搜索脚本PS:方便大家使用写到了HTML中生成表格。线程可以在脚本里直接改,测试线程为30时IP可能会被限制访问。环境: Python3最新电影爬取代码# -*- coding: utf-8 -*-# @Time : 2018/3/5 下午2:43# @Author : MyPuppet#

2018-3-6 17:12 122 151413

Vpn断开自动断网小程序[windows]

很简单的一个小程序,连接ppp的vpn之后在ipconfig会有一个PPP 适配器 VPN 连接: 连接特定的 DNS 后缀 . . . . . . . : IPv4 地址 . . . . . . . . . . . . : 172.16.36.2 子网掩码 . . . . . . . . . . . . : 255.255.255.255 默认网关. . . . . . . . . . . . . : 0.0.0.0这样的内容,那么写

2015-1-1 17:48 44 15347

【Love Python】【01】认识可爱的python

一,python特性概要 1,python是解释型语言,我们和c比较一下 root@GK:~# cat hello.c #include "stdio.h"int main(void){printf("hello t00ls \n");}root@GK:~# gcc hello.c -o helloroot@GK:~# ./hello hello t00ls root@GK:~# 每次修改源文件都要重新编译一下,python则不用root@GK:~# cat h

2013-9-26 01:13 56 9005