首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

177本Python最新版国外电子书分享(上)

http://file.allitebooks.com/20180817/Python For Dummies.pdf http://file.allitebooks.com/20180805/MySQL ConnectorPython Revealed.pdf http://file.allitebooks.com/20180722/Learn Raspberry Pi Programming with Python, 2nd Edition.pdf http://file.allitebooks.com/20180719/Instant Pygame for Python Game Development How-to.pdf http://file.allitebooks.com/20180623/Python Graphics.pdf http://file.allitebooks.com/20180603/Web Scraping with Python, 2nd Edition.pdf http://file.allitebooks.com/20180526/Advanced Data Analytics Using Python.pdf http://file.allitebooks.com/20180513/The Python 3 Standard Library by Example.pdf http://file.allitebooks.com/20180512/Data Science Fundamentals for Python and MongoDB.pdf http://file.allitebooks.com/20180312/Dive into Python 3.pdf http://file.allitebooks.com/20180228/Practical Python AI Projects.pdf http://file.allitebooks.com/20180223/Learn Data Analysis with Python.pdf http://file.allitebooks.com/20180218/Beginning Programming with Python For Dummies, 2nd Edition.pdf http://file.allitebooks.com/20180109/Python for the Busy Java Developer.pdf http://file.allitebooks.com/20171221/Practical Machine Learning with Python.pdf http://file.allitebooks.com/20171213/wxPython Recipes.pdf http://file.allitebooks.com/20171126/MicroPython for the Internet of Things.pdf http://file.allitebooks.com/20171124/Make Your Own Python Text Adventure.pdf http://file.allitebooks.com/20171108/Getting Started with Python and Raspberry Pi.pdf http://file.allitebooks.com/20171029/Python Machine Learning Case Studies.pdf http://file.allitebooks.com/20171009/Python for Data Analysis, 2nd Edition.pdf http://file.allitebooks.com/20171009/Programming with MicroPython.pdf http://file.allitebooks.com/20170831/Thoughtful Machine Learning with Python.pdf http://file.allitebooks.com/20170822/Test-Driven Development with Python, 2nd Edition.pdf http://file.allitebooks.com/20170813/Python Requests Essentials.pdf http://file.allitebooks.com/20170710/Effective Python Penetration

02
您找到你想要的搜索结果了吗?
是的
没有找到

python开发_常用的python模块及安装方法

adodb:我们领导推荐的数据库连接组件 bsddb3:BerkeleyDB的连接组件 Cheetah-1.0:我比较喜欢这个版本的cheetah cherrypy:一个WEB framework ctypes:用来调用动态链接库 DBUtils:数据库连接池 django:一个WEB framework docutils:用来写文档的 dpkt:数据包的解包和组包 MySQLdb:连接MySQL数据库的 py2exe:用来生成windows可执行文件 Pylons:我们领导推荐的web framework pysqlite2:SQLite的连接组件 pythonwin:Python的Windows扩展 setuptools:无奈,PEAK的一套python包管理机制 sqlalchemy:数据库连接池 SQLObject:数据库连接池 twisted:巨无霸的网络编程框架 wxPython-2.6:因为需要保持与linux相同的版本才没用最新的,GUI编程框架 pypcap:抓包的 python-dnet:控制网络安全的其他设备 pyevent:Python的事件支持 pydot:画图的,graphiz sendpkt:Python发包 simplejson:JSON的支持 DPKT:raw-scoket网络编程 Cx-oracle:连接oracle的好东东 Mechanize:爬虫连接网站常用 PIL:图像处理工具包 reportlab for PDF 文件。 PyQt4 for GUI界面 feedparser: rss解析 chardet:编码检测 scons: 项目构建工具,写好了模板用起来还是很方便的 scapy: 网络包构建分析框架,可编程的wireshark,有兴趣的google “Silver Needle in the Skype” pefile: windows pe文件解析器 winpdb: 自己的程序或者用别的库不太明白的时候就靠它了 pywmi: 省了好多折腾功夫 pylint: 培养良好的编码习惯 下面是准备用的,不做评论: pygccxml pyparsing pymacs idapython paimei pysvn pyLucene wikidpad

03

centos7 重装python和yum

卸载现有的Python和Yum 1、删除现有Python ##强制删除已安装程序及其关联 rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps ##删除所有残余文件 ##xargs,允许你对输出执行其他某些命令 whereis python |xargs rm -frv ##验证删除,返回无结果 whereis python 2、删除现有的yum、强制删除已安装程序及其关联 ##强制删除已安装程序及其关联 rpm -qa|grep yum|xargs rpm -ev --allmatches --nodeps ##强制删除所有残余文件 whereis yum |xargs rm -frv 下载所需的rpm包 ##查看自己系统版本的命令 cat /etc/redhat-release #CentOS Linux release 7.8.2003 (Core) ##下载相应的包地址: http://mirrors.ustc.edu.cn/centos/7.8.2003(自己系统版本号)/os/x86_64/Packages/ ##所需要的包 ##python python-2.7.5-88.el7.x86_64.rpm python-iniparse-0.4-9.el7.noarch.rpm python-pycurl-7.19.0-19.el7.x86_64.rpm python-devel-2.7.5-88.el7.x86_64.rpm python-libs-2.7.5-88.el7.x86_64.rpm python-urlgrabber-3.10-10.el7.noarch.rpm rpm-python-4.11.3-43.el7.x86_64.rpm ##yum yum-3.4.3-167.el7.centos.noarch.rpm yum-metadata-parser-1.1.4-10.el7.x86_64.rpm yum-plugin-fastestmirror-1.1.31-53.el7.noarch.rpm ##创建目录python和yum用以存放rpm包 mkdir /usr/local/rpm ##使用wget分别下载python以及yum的rpm包(注意:一定要和系统的版本号对应) 地址如下 python wget http://mirrors.ustc.edu.cn/centos/7.8.2003/os/x86_64/Packages/python-2.7.5-88.el7.x86_64.rpm wget http://mirrors.ustc.edu.cn/centos/7.8.2003/os/x86_64/Packages/python-iniparse-0.4-9.el7.noarch.rpm wget http://mirrors.ustc.edu.cn/centos/7.8.2003/os/x86_64/Packages/python-pycurl-7.19.0-19.el7.x86_64.rpm wget http://mirrors.ustc.edu.cn/centos/7.8.2003/os/x86_64/Packages/python-devel-2.7.5-88.el7.x86_64.rpm wget http://mirrors.ustc.edu.cn/centos/7.8.2003/os/x86_64/Packages/python-libs-2.7.5-88.el7.x86_64.rpm wget http://mirrors.ustc.edu.cn/centos/7.8.2003/os/x86_64/Packages/python-urlgrabber-3.10-10.el7.noarch.rpm wget http://mirrors.ustc.edu.cn/centos/7.8.2003/os/x86_64/Packages/rpm-python-4.11.3-43.el7.x86_64.rpm

03

100个Python常用模块/库

1. NumPy - 数值计算扩展库。提供高效的多维数组对象和用于处理这些数组的工具。http://www.numpy.org/2. SciPy - 科学计算库。构建在NumPy之上,用于科学与技术计算。https://www.scipy.org/3. Pandas - 数据分析与操作库。提供高性能易用的数据结构和数据分析工具。http://pandas.pydata.org/4. Matplotlib - 数据可视化库。产生 Publication quality figures。http://matplotlib.org/5. Scikit-learn - 机器学习库。用于数据挖掘和数据分析。http://scikit-learn.org/stable/6. TensorFlow - 深度学习库。由谷歌开源,用于机器学习,深度神经网络与人工智能。http://tensorflow.org7. Django - Web框架。提供开发Web应用的骨架。https://www.djangoproject.com/8. Flask - 微型Web框架。提供Werkzeug、Jinja2等高质量成功的库集成。http://flask.pocoo.org/9. Scrapy - 网络爬虫框架。用于进行网络爬取,提供操作各种网站的能力和工具。https://scrapy.org/10. BeautifulSoup - HTML/XML解析库。提供解析器,用于从HTML和XML文件中提取数据。https://www.crummy.com/software/BeautifulSoup/

01

[译] 天龙八步 第二弹:8步从Python白丁到专家,从基础到深度学习

大数据文摘翻译作品 编译:姚佳灵,康欣 欢迎个人转发朋友圈;其他机构或自媒体转载,务必后台留言,申请授权 如果你想做一个数据科学家,或者作为一个数据科学家你想扩展自己的工具和知识库,那么,你来对地方了。 这篇文章的目的,是给刚开始使用Python进行数据分析的人,指明一条全面的Python学习路径。这条路径提供了用Python进行数据分析的必要步骤的一个全面概述。如果你已经有了一些基础,或者不需要所有的内容,可以随意调整学习路径以适合自己,并让我们知道你是怎么改动的。 0 热身运动 在开始学习之前,第一个需

07

2022PyCharm激活码(2022PyCharm最新激活码)2022PyCharm激活码

eyJsaWNlbnNlSlBXUyIsInBhaWRVcFRvIGFIUFYggR08iLCJwYWlkVXBUbyI6HFGHFydur76tr9tFTFUFRfiufTDHGjoIGuf87fofo8firpFnO0zrmMWcz1q2UWJNuGTh0rwi+p4c32MeFACfC0BsGA1UEAwwUcHJvZDJ5LWZyb20tMjAyMDEwMTkwggEiMA0GCSqGSds0seyJjb2RlIjoiUFBTIiwicGFpZFVwUO2te9UU5/FjhioZQsPvd92qOTsV+8Cyl2fvNhNKD1Uu9ff5AkVIQn4JU23ozdBR5oUlebwaTE6WZgiutyiuyvfytftGGVkIjp0cnVlfSx7ImNvZGUiOiJQh0ZW5kZWDVR0TBAIwADgyugGIYTvgjkGhKAoIBAQDCP4uk4SlVdurdyrYDYUDYiOiIyMDIyLTEwLTEzIiwiZXfiuygt87r68778GVu5dfICYUDUYFIUfdtyuyrf796fuyFHGFitf7r6iFUITFIUGFIUfri6t8ir6fTFUITFITUf6urf6r9iufHGFHGF7r76r7dfuFCHGFF65e67eVHGFHJFyutr56rfdyudurdYTDDFytre576rftyftuyfryurVJGVJHVjuguygiu7ggghjggut6t87t7rfuIb3DQEBAQUphHKQaMBgxFjAUBgMi0xMC0xMyIsImV4dQZIjIwMjItMTAtMTMiLCJleHRlbmRlZCI6dHJ1ZXA5ndf870df96FUFTUYFONBsTHGcm9sb25nYXRlZCI6ZmFsc2V9

00
领券