网络安全最新27 个Python数据科学库实战案例 (附代码)_库里python代码,三面蚂蚁核心金融部

一、网安学习成长路线图

网安所有方向的技术点做的整理,形成各个领域的知识点汇总,它的用处就在于,你可以按照上面的知识点去找对应的学习资源,保证自己学得较为全面。
在这里插入图片描述

二、网安视频合集

观看零基础学习视频,看视频学习是最快捷也是最有效果的方式,跟着视频中老师的思路,从基础到深入,还是很容易入门的。
在这里插入图片描述

三、精品网安学习书籍

当我学到一定基础,有自己的理解能力的时候,会去阅读一些前辈整理的书籍或者手写的笔记资料,这些笔记详细记载了他们对一些技术点的理解,这些理解是比较独到,可以学到不一样的思路。
在这里插入图片描述

四、网络安全源码合集+工具包

光学理论是没用的,要学会跟着一起敲,要动手实操,才能将自己的所学运用到实际当中去,这时候可以搞点实战案例来学习。
在这里插入图片描述

五、网络安全面试题

最后就是大家最关心的网络安全面试题板块
在这里插入图片描述在这里插入图片描述

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化资料的朋友,可以点击这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!



![图片](https://img-blog.csdnimg.cn/img_convert/a9db1d1048720a563238610b798430f0.png)


OpenCV


### **3、Scikit-image**


scikit-image是基于scipy的图像处理库,它将图片作为numpy数组进行处理。例如,可以利用scikit-image改变图片比例,scikit-image提供了rescale、resize以及downscale\_local\_mean等函数。



from skimage import data, color, iofrom skimage.transform import rescale, resize, downscale_local_mean
image = color.rgb2gray(io.imread(‘h89817032p0.png’))
image_rescaled = rescale(image, 0.25, anti_aliasing=False)image_resized = resize(image, (image.shape[0] // 4, image.shape[1] // 4), anti_aliasing=True)image_downscaled = downscale_local_mean(image, (4, 3))plt.figure(figsize=(20,20))plt.subplot(221),plt.imshow(image, cmap=‘gray’),plt.title(‘Original’)plt.xticks([]), plt.yticks([])plt.subplot(222),plt.imshow(image_rescaled, cmap=‘gray’),plt.title(‘Rescaled’)plt.xticks([]), plt.yticks([])plt.subplot(223),plt.imshow(image_resized, cmap=‘gray’),plt.title(‘Resized’)plt.xticks([]), plt.yticks([])plt.subplot(224),plt.imshow(image_downscaled, cmap=‘gray’),plt.title(‘Downscaled’)plt.xticks([]), plt.yticks([])plt.show()



![图片](https://img-blog.csdnimg.cn/img_convert/e3733f60340b1f629bdd4698dd945214.png)


Scikit-image


### **4、PIL**


Python Imaging Library(PIL) 已经成为 Python 事实上的图像处理标准库了,这是由于,PIL 功能非常强大,但API却非常简单易用。但是由于PIL仅支持到 Python 2.7,再加上年久失修,于是一群志愿者在 PIL 的基础上创建了兼容的版本,名字叫 Pillow,支持最新 Python 3.x,又加入了许多新特性,因此,我们可以跳过 PIL,直接安装使用 Pillow。


### **5、Pillow**


使用 Pillow 生成字母验证码图片:



from PIL import Image, ImageDraw, ImageFont, ImageFilter
import random

随机字母:def rndChar(): return chr(random.randint(65, 90))

随机颜色1:def rndColor(): return (random.randint(64, 255), random.randint(64, 255), random.randint(64, 255))

随机颜色2:def rndColor2(): return (random.randint(32, 127), random.randint(32, 127), random.randint(32, 127))

240 x 60:width = 60 * 6height = 60 * 6image = Image.new(‘RGB’, (width, height), (255, 255, 255))# 创建Font对象:font = ImageFont.truetype(‘/usr/share/fonts/wps-office/simhei.ttf’, 60)# 创建Draw对象:draw = ImageDraw.Draw(image)# 填充每个像素:for x in range(width): for y in range(height): draw.point((x, y), fill=rndColor())# 输出文字:for t in range(6): draw.text((60 * t + 10, 150), rndChar(), font=font, fill=rndColor2())# 模糊:image = image.filter(ImageFilter.BLUR)image.save(‘code.jpg’, ‘jpeg’)



![图片](https://img-blog.csdnimg.cn/img_convert/1c3173832a07143085328e457ef36f12.jpeg)


验证码


### **6、SimpleCV**


SimpleCV 是一个用于构建计算机视觉应用程序的开源框架。使用它,可以访问高性能的计算机视觉库,如 OpenCV,而不必首先了解位深度、文件格式、颜色空间、缓冲区管理、特征值或矩阵等术语。但其对于 Python3 的支持很差很差,在 Python3.7 中使用如下代码:




from SimpleCV import Image, Color, Display# load an image from imgurimg = Image(‘http://i.imgur.com/lfAeZ4n.png’)# use a keypoint detector to find areas of interestfeats = img.findKeypoints()# draw the list of keypointsfeats.draw(color=Color.RED)# show the resulting image. img.show()# apply the stuff we found to the image.output = img.applyLayers()# save the results.output.save(‘juniperfeats.png’)


会报如下错误,因此不建议在 Python3 中使用:



SyntaxError: Missing parentheses in call to ‘print’. Did you mean print(‘unit test’)?


### **7、Mahotas**


Mahotas 是一个快速计算机视觉算法库,其构建在 Numpy 之上,目前拥有超过100种图像处理和计算机视觉功能,并在不断增长。使用 Mahotas 加载图像,并对像素进行操作:



import numpy as npimport mahotasimport mahotas.demos
from mahotas.thresholding import soft_thresholdfrom matplotlib import pyplot as pltfrom os import pathf = mahotas.demos.load(‘lena’, as_grey=True)f = f[128:,128:]plt.gray()# Show the data:print(“Fraction of zeros in original image: {0}”.format(np.mean(f==0)))plt.imshow(f)plt.show()



![图片](https://img-blog.csdnimg.cn/img_convert/5967e7e71e70d41b492af7fe7a97b474.png)


Mahotas


### **8、Ilastik**


Ilastik 能够给用户提供良好的基于机器学习的生物信息图像分析服务,利用机器学习算法,轻松地分割,分类,跟踪和计数细胞或其他实验数据。大多数操作都是交互式的,并不需要机器学习专业知识。


### **9、Scikit-Learn**


Scikit-learn 是针对 Python 编程语言的免费软件机器学习库。它具有各种分类,回归和聚类算法,包括支持向量机,随机森林,梯度提升,k均值和 DBSCAN 等多种机器学习算法。使用Scikit-learn实现KMeans算法:



import time
import numpy as npimport matplotlib.pyplot as plt
from sklearn.cluster import MiniBatchKMeans, KMeansfrom sklearn.metrics.pairwise import pairwise_distances_argminfrom sklearn.datasets import make_blobs

Generate sample datanp.random.seed(0)

batch_size = 45centers = [[1, 1], [-1, -1], [1, -1]]n_clusters = len(centers)X, labels_true = make_blobs(n_samples=3000, centers=centers, cluster_std=0.7)

Compute clustering with Means

k_means = KMeans(init=‘k-means++’, n_clusters=3, n_init=10)t0 = time.time()k_means.fit(X)t_batch = time.time() - t0

Compute clustering with MiniBatchKMeans

mbk = MiniBatchKMeans(init=‘k-means++’, n_clusters=3, batch_size=batch_size, n_init=10, max_no_improvement=10, verbose=0)t0 = time.time()mbk.fit(X)t_mini_batch = time.time() - t0

Plot resultfig = plt.figure(figsize=(8, 3))fig.subplots_adjust(left=0.02, right=0.98, bottom=0.05, top=0.9)colors = [‘#4EACC5’, ‘#FF9C34’, ‘#4E9A06’]

We want to have the same colors for the same cluster from the# MiniBatchKMeans and the KMeans algorithm. Let’s pair the cluster centers per# closest one.k_means_cluster_centers = k_means.cluster_centers_order = pairwise_distances_argmin(k_means.cluster_centers_, mbk.cluster_centers_)mbk_means_cluster_centers = mbk.cluster_centers_[order]

k_means_labels = pairwise_distances_argmin(X, k_means_cluster_centers)mbk_means_labels = pairwise_distances_argmin(X, mbk_means_cluster_centers)

KMeansfor k, col in zip(range(n_clusters), colors): my_members = k_means_labels == k cluster_center = k_means_cluster_centers[k] plt.plot(X[my_members, 0], X[my_members, 1], ‘w’, markerfacecolor=col, marker=‘.’) plt.plot(cluster_center[0], cluster_center[1], ‘o’, markerfacecolor=col, markeredgecolor=‘k’, markersize=6)plt.title(‘KMeans’)plt.xticks(())plt.yticks(())

plt.show()



![图片](https://img-blog.csdnimg.cn/img_convert/53135d8cd68a04438bffd3bcb09c96f7.png)


KMeans


### **10、SciPy**


SciPy 库提供了许多用户友好和高效的数值计算,如数值积分、插值、优化、线性代数等。SciPy 库定义了许多数学物理的特殊函数,包括椭圆函数、贝塞尔函数、伽马函数、贝塔函数、超几何函数、抛物线圆柱函数等等。



from scipy import specialimport matplotlib.pyplot as pltimport numpy as np
def drumhead_height(n, k, distance, angle, t): kth_zero = special.jn_zeros(n, k)[-1] return np.cos(t) * np.cos(nangle) * special.jn(n, distancekth_zero)
theta = np.r_[0:2*np.pi:50j]radius = np.r_[0:1:50j]x = np.array([r * np.cos(theta) for r in radius])y = np.array([r * np.sin(theta) for r in radius])z = np.array([drumhead_height(1, 1, r, theta, 0.5) for r in radius])

fig = plt.figure()ax = fig.add_axes(rect=(0, 0.05, 0.95, 0.95), projection=‘3d’)ax.plot_surface(x, y, z, rstride=1, cstride=1, cmap=‘RdBu_r’, vmin=-0.5, vmax=0.5)ax.set_xlabel(‘X’)ax.set_ylabel(‘Y’)ax.set_xticks(np.arange(-1, 1.1, 0.5))ax.set_yticks(np.arange(-1, 1.1, 0.5))ax.set_zlabel(‘Z’)plt.show()



![图片](https://img-blog.csdnimg.cn/img_convert/d43c2630e77a91c4ed10e81461081cbc.png)


SciPy


### **11、NLTK**


NLTK 是构建Python程序以处理自然语言的库。它为50多个语料库和词汇资源(如 WordNet )提供了易于使用的接口,以及一套用于分类、分词、词干、标记、解析和语义推理的文本处理库、工业级自然语言处理 (Natural Language Processing, NLP) 库的包装器。NLTK被称为 “a wonderful tool for teaching, and working in, computational linguistics using Python”。



import nltkfrom nltk.corpus import treebank

首次使用需要下载nltk.download(‘punkt’)nltk.download(‘averaged_perceptron_tagger’)nltk.download(‘maxent_ne_chunker’)nltk.download(‘words’)nltk.download(‘treebank’)

sentence = “”“At eight o’clock on Thursday morning Arthur didn’t feel very good.”“”# Tokenizetokens = nltk.word_tokenize(sentence)tagged = nltk.pos_tag(tokens)

Identify named entitiesentities = nltk.chunk.ne_chunk(tagged)

Display a parse treet = treebank.parsed_sents(‘wsj_0001.mrg’)[0]t.draw()



![图片](https://img-blog.csdnimg.cn/img_convert/353ad9ebe15204baa402667074e9c0f7.jpeg)


NLTK


**12、spaCy**


spaCy 是一个免费的开源库,用于 Python 中的高级 NLP。它可以用于构建处理大量文本的应用程序;也可以用来构建信息提取或自然语言理解系统,或者对文本进行预处理以进行深度学习。



import spacy
texts = [
“Net income was $9.4 million compared to the prior year of $2.7 million.”,
“Revenue exceeded twelve billion dollars, with a loss of $1b.”,
]
nlp = spacy.load(“en_core_web_sm”)
for doc in nlp.pipe(texts, disable=[“tok2vec”, “tagger”, “parser”, “attribute_ruler”, “lemmatizer”]):
# Do something with the doc here
print([(ent.text, ent.label_) for ent in doc.ents])


nlp.pipe 生成 Doc 对象,因此我们可以对它们进行迭代并访问命名实体预测:



[(‘$9.4 million’, ‘MONEY’), (‘the prior year’, ‘DATE’), (‘$2.7 million’, ‘MONEY’)][(‘twelve billion dollars’, ‘MONEY’), (‘1b’, ‘MONEY’)]


### **13、LibROSA**


librosa 是一个用于音乐和音频分析的 Python 库,它提供了创建音乐信息检索系统所必需的功能和函数。



Beat tracking exampleimport librosa

1. Get the file path to an included audio examplefilename = librosa.example(‘nutcracker’)

2. Load the audio as a waveform y# Store the sampling rate as sry, sr = librosa.load(filename)

3. Run the default beat trackertempo, beat_frames = librosa.beat.beat_track(y=y, sr=sr)print(‘Estimated tempo: {:.2f} beats per minute’.format(tempo))

4. Convert the frame indices of beat events into timestampsbeat_times = librosa.frames_to_time(beat_frames, sr=sr)


### **14、Pandas**


Pandas 是一个快速、强大、灵活且易于使用的开源数据分析和操作工具, Pandas 可以从各种文件格式比如 CSV、JSON、SQL、Microsoft Excel 导入数据,可以对各种数据进行运算操作,比如归并、再成形、选择,还有数据清洗和数据加工特征。Pandas 广泛应用在学术、金融、统计学等各个数据分析领域。



import matplotlib.pyplot as pltimport pandas as pdimport numpy as np
ts = pd.Series(np.random.randn(1000), index=pd.date_range(“1/1/2000”, periods=1000))ts = ts.cumsum()
df = pd.DataFrame(np.random.randn(1000, 4), index=ts.index, columns=list(“ABCD”))df = df.cumsum()df.plot()plt.show()



![图片](https://img-blog.csdnimg.cn/img_convert/2572c48cf1df2e91ddff06ec478ac229.png)


Pandas


### **15、Matplotlib**


Matplotlib 是Python的绘图库,它提供了一整套和 matlab 相似的命令 API,可以生成出版质量级别的精美图形,Matplotlib 使绘图变得非常简单,在易用性和性能间取得了优异的平衡。使用 Matplotlib 绘制多曲线图:



plot_multi_curve.pyimport numpy as npimport matplotlib.pyplot as pltx = np.linspace(0.1, 2 * np.pi, 100)y_1 = xy_2 = np.square(x)y_3 = np.log(x)y_4 = np.sin(x)plt.plot(x,y_1)plt.plot(x,y_2)plt.plot(x,y_3)plt.plot(x,y_4)plt.show()


![图片](https://img-blog.csdnimg.cn/img_convert/866b8fae0a83ed8c2655055da465341a.png)


Matplotlib


### **16、Seaborn**


Seaborn 是在 Matplotlib 的基础上进行了更高级的API封装的Python数据可视化库,从而使得作图更加容易,应该把 Seaborn 视为 Matplotlib 的补充,而不是替代物。



import seaborn as snsimport matplotlib.pyplot as pltsns.set_theme(style=“ticks”)
df = sns.load_dataset(“penguins”)sns.pairplot(df, hue=“species”)plt.show()



![图片](https://img-blog.csdnimg.cn/img_convert/c9b03274ea927312a43eb97a0419f70c.png)


seaborn


### **17、Orange**


Orange 是一个开源的数据挖掘和机器学习软件,提供了一系列的数据探索、可视化、预处理以及建模组件。Orange 拥有漂亮直观的交互式用户界面,非常适合新手进行探索性数据分析和可视化展示;同时高级用户也可以将其作为 Python 的一个编程模块进行数据操作和组件开发。使用 pip 即可安装 Orange,好评~



$ pip install orange3


安装完成后,在命令行输入 orange-canvas 命令即可启动 Orange 图形界面:



$ orange-canvas


启动完成后,即可看到 Orange 图形界面,进行各种操作。



![图片](https://img-blog.csdnimg.cn/img_convert/ae7943b04307c962e90819a2b3353201.png)


Orange


### **18、PyBrain**


PyBrain 是 Python 的模块化机器学习库。它的目标是为机器学习任务和各种预定义的环境提供灵活、易于使用且强大的算法来测试和比较算法。PyBrain 是 Python-Based Reinforcement Learning, Artificial Intelligence and Neural Network Library 的缩写。我们将利用一个简单的例子来展示 PyBrain 的用法,构建一个多层感知器 (Multi Layer Perceptron, MLP)。首先,我们创建一个新的前馈网络对象:



from pybrain.structure import FeedForwardNetworkn = FeedForwardNetwork()



**先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7**

**深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!**

**因此收集整理了一份《2024年最新网络安全全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。**
![img](https://img-blog.csdnimg.cn/img_convert/1ed8aab7bf8c2037bbe5260607007a8d.png)
![img](https://img-blog.csdnimg.cn/img_convert/2c5b19e0cb6afbb942f162c7615a8186.png)
![img](https://img-blog.csdnimg.cn/img_convert/43a0b75fd8b26e2833a326547ab9253d.png)
![img](https://img-blog.csdnimg.cn/img_convert/a3d6fdfd47ffb931636eca981c0dd918.png)
![img](https://img-blog.csdnimg.cn/img_convert/07fa493258f8b4fca2700d180f5cac0a.png)
![img](https://img-blog.csdnimg.cn/img_convert/e1fa0c7267a1ac86d4d0542ff4abf015.png)

**既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上网络安全知识点,真正体系化!**

**由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新**

**[需要这份系统化资料的朋友,可以点击这里获取](https://bbs.csdn.net/forums/4f45ff00ff254613a03fab5e56a57acb)**

15710270164)]
[外链图片转存中...(img-9RYkkMaH-1715710270164)]
[外链图片转存中...(img-u3twn3HT-1715710270165)]
[外链图片转存中...(img-OLwAGyem-1715710270165)]

**既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上网络安全知识点,真正体系化!**

**由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新**

**[需要这份系统化资料的朋友,可以点击这里获取](https://bbs.csdn.net/forums/4f45ff00ff254613a03fab5e56a57acb)**

  • 11
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值