原创 【Python行業分析3】BOSS直聘招聘信息獲取之爬蟲程序分析

今天我們要正式使用程序來爬取BOSS的招聘數據了,我會從最基礎的一步一步去完善程序,幫助大家來理解爬蟲程序,其中還是有許多問題我沒能解決,也希望有大佬可以留言幫助一下 首先我們來訪問下頁面,看下結果是不是和瀏覽器訪問是一致的 具體

原创 Python菜鳥來分享下底層從業者的Python行業現狀,面試經歷

1. 概述 Python的廣告文章越來越多了,既然是廣告就有誇大脫離現實的yy,那就由最近一直在面試的Python菜鳥來分享下底層從業者的Python行業現狀。 1.1. 某學院的Python行業現狀 1.2. 某博主的Pyth

原创 python操作Windows窗口程序

場景 定時獲取數據接口數據寫入Excel表格,Excel需要被其他程序使用,需要處於開啓狀態。 Pywin32 首先,安裝一個Pywin32,爲python提供訪問Windows API的擴展,提供了齊全的windows常量、接口

原创 python操作windows窗口獲取窗口句柄

python獲取窗口句柄 在Windows下獲取窗口句柄時操作系統版本和軟件版本對獲取有影響,就會出現在本地調試正常的程序,交付使用的時候報錯。 查看windows所有可顯示的窗口句柄及窗口名稱。 # -*- coding: ut

原创 【python web開發知識點整理7】- 網絡編程基礎

網絡協議 (1)TCP/IP協議 TCP/IP是分層協議,如層次圖所示:從底層到應用層,分別是物理層,鏈路層,網絡層,傳輸層,應用層。數據是層層封裝,封裝的方式一般都是在原有數據的前面加一個數據控制頭。 (2)Telnet協議 T

原创 【python web開發知識點整理8】- 進程

進程 1.進程間內存是否共享?如何實現通訊? 解析: 進程之間的內存是相互隔離的,因此數據也是相互隔離的。 實現:1.基於文件(隊列,管道+鎖)2.基於網絡(第三方工具,socket) 2、請聊聊進程隊列的特點和實現原理? 特點:

原创 【python web開發知識點整理10】-協程

協程 1.什麼是協程?常用的協程模塊有哪些?協程和線程的區別? 協程是一種用戶級的輕量型線程,協程是由用戶程序自己控制調度,是單線程下的併發,又稱微線程,纖程,coroutine 常用模塊: greenlet:提供了切換任務的快捷

原创 【python web開發知識點整理9】-線程

線程 1.GIL鎖是什麼回事? global interpreter lock全局解釋其所,Cpython中,對解釋器加的一把鎖,導致同一時刻同一進程中只有一個線程能夠訪問cpu,GIL鎖的出現,保證了多線程對共享數據的大部分操作

原创 【FastAPI】Hello World

FastAPI FastAPI框架,高性能,易學,快速編碼,可投入生產 FastAPI是一種現代,快速(高性能)的Web框架,用於基於標準Python類型提示使用Python 3.6+構建API。 文檔:https : //fas

原创 【python web開發知識點整理4】- 數據庫基礎

【python web開發知識點整理1】- Python基礎 【python web開發知識點整理2】- Python Web基礎 【python web開發知識點整理3】- 容器基礎 【python web開發知識點整理4】-

原创 【python web開發知識點整理2】- Python Web基礎

【python web開發知識點整理1】- Python基礎 【python web開發知識點整理2】- Python Web基礎 【python web開發知識點整理3】- 容器基礎 【python web開發知識點整理4】-

原创 【python web開發知識點整理1】- Python基礎

【python web開發知識點整理1】- Python基礎 【python web開發知識點整理2】- Python Web基礎 【python web開發知識點整理3】- 容器基礎 【python web開發知識點整理4】-

原创 【python web開發知識點整理5】- Linux基礎

【python web開發知識點整理1】- Python基礎 【python web開發知識點整理2】- Python Web基礎 【python web開發知識點整理3】- 容器基礎 【python web開發知識點整理4】-

原创 【python web開發知識點整理3】- 容器基礎

【python web開發知識點整理1】- Python基礎 【python web開發知識點整理2】- Python Web基礎 【python web開發知識點整理3】- 容器基礎 【python web開發知識點整理4】-

原创 【python web開發知識點整理6】- 設計模式

【python web開發知識點整理1】- Python基礎 【python web開發知識點整理2】- Python Web基礎 【python web開發知識點整理3】- 容器基礎 【python web開發知識點整理4】-