码迷,mamicode.com
首页 >  
搜索关键字:choice    ( 840个结果
python爬取google搜索结果,配合sqlmap做sql注入检测
前段时间试了半自动sql注入检测的小程序:https://www.cnblogs.com/theseventhson/p/13755588.html 原理很简单:先在百度用关键词爬取目标url后保存在txt文件;再开启sqlmap的api调用服务,用python脚本把爬取的url推动到sqlmap的 ...
分类:数据库   时间:2020-10-07 20:34:27    阅读次数:25
将随机生成学生的数据导入Mysql
import random from random import choice as choice import mysql.connector import string def Create_Name(): first_name = ['赵',"钱","孙","李","王","林"] secon ...
分类:数据库   时间:2020-09-18 01:14:07    阅读次数:38
jenkins入门
1.新建一个item1.首先,新建一个item,2.我们先创建一个自由风格的项目来练练手吧3.配置github地址,编译命令行操作,最后进行保存4.查看日志根据上面的步骤,我们就完成一个简单的项目构建了.以上是一个很简单的例子,但是我们在平时工作中,或者在devops平台上,我们基本都不是这样用的,如果每次都这么配置的话,应该是会搞死我们的,每天devops项目需要接入到很多项目中,为了让我们从更
分类:其他好文   时间:2020-08-20 18:35:32    阅读次数:60
什么时候Python中try异常捕获finally一定要用到
import random def raise_valueError(fw): print(fw) raise_e = random.choice((True, False)) if raise_e: # 假设这个异常不一定触发 raise ValueError def try_finally(): ...
分类:编程语言   时间:2020-07-28 22:27:28    阅读次数:90
python 图形化界面编程--Easygui
简介对于想学Python图形化编程的小伙伴来说,easygui是一个很好图形化入门编程模块!函数介绍ccbox()——双项选择cc表示continue还是cancel他返回的是1和0,但是不代表True和False,但是在if里面还是可以用1和0,另外,选项后面还可以加,自己随意。msgbox()——消息弹窗msgbox(msg=‘‘,title=‘‘,ok_but
分类:编程语言   时间:2020-07-26 11:19:30    阅读次数:108
批量生成海报 以及二维码
# -*- coding: utf-8 -*- """ Created on Thu Jul 23 11:52:36 2020 @author: Administrator """ from PIL import Image,ImageDraw,ImageFont import random imp ...
分类:其他好文   时间:2020-07-23 22:19:29    阅读次数:165
f2m
https://www.certicom.com/content/certicom/en/41-an-example-of-an-elliptic-curve-group-over-f2m.html As a very small example, consider the field F24, d ...
分类:其他好文   时间:2020-07-15 15:08:35    阅读次数:128
【Understanding One-Shot NAS】2018-ICML-Understanding and Simplifying One-Shot Architecture Search-论文阅读
Understanding One-Shot NAS 2018-ICML-Understanding and Simplifying One-Shot Architecture Search Google Brain Gabriel Bender、Quoc Le Citation:183 Intro ...
分类:其他好文   时间:2020-07-11 19:23:14    阅读次数:51
Windows-bat-loop for restart exe
Windows-bat-loop for restart exe July 10, 2020 2:09 AM 周期重启某个指定的程序 @echo off :start choice /t 10 /d y /n >nul cd C:\Users\Administrator\Desktop\XXXX.e ...
分类:Windows程序   时间:2020-07-10 09:20:47    阅读次数:79
L - Lost's revenge HDU - 3341 (AC自动机 + 记忆化搜索 + 变进制算法)
Lost and AekdyCoin are friends. They always play "number game"(A boring game based on number theory) together. We all know that AekdyCoin is the man c ...
分类:编程语言   时间:2020-07-07 12:52:15    阅读次数:93
840条   上一页 1 2 3 4 5 ... 84 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!