1. import os
  2.  
  3. img_list = []
  4. for fileNames in os.walk("."):
  5.     filename_extension = ['.jpg', '.png', '.jpeg', '.JPG', '.gif']
  6.     for fe in filename_extension:
  7.         for fileName in fileNames[-1]:
  8.             if fileName.endswith(fe):
  9.                 img_list.append(fileName)
  10.  
  11. for img in img_list:
  12.     detect(img)
複製代碼
文章標籤

paineyva1xk 發表在 痞客邦 留言(0) 人氣()



寫法2網頁設計

因搜尋引擎改版,網站不得不改https
當網站安裝了SSL後,如何把網址主動轉成https?

在網頁目錄-public_html,有一個檔案叫 .htaccess,編輯檔案內容,然後將以下轉向的規則寫在裡面:

寫法1:

文章標籤

paineyva1xk 發表在 痞客邦 留言(0) 人氣()

 

 

文章標籤

paineyva1xk 發表在 痞客邦 留言(0) 人氣()


Result
【Python 爬蟲】抓取 Google 搜索了局的貫穿連接【Python 爬蟲】抓取 Google 搜索了局的貫穿連接


 

記實一下批量抓取 Google 搜索效果裡的貫穿連接的方式。


假如還沒有安裝以下,要先下載安裝:
 

文章標籤

paineyva1xk 發表在 痞客邦 留言(0) 人氣()

  1. <div id="recaptcha_box2"></div>
複製代碼
文章標籤

paineyva1xk 發表在 痞客邦 留言(0) 人氣()

在搜尋引擎一直改版網頁不能不進入https
所以後台編纂器圖片上傳也變得不克不及用了
不得已又請教了谷哥大神
多方嘗試後,找到
CKeditor 4.11.1 網頁編纂器與CKfinder 2.6.2.1 圖片上傳可以用

網頁設計 CKeditor 4.11.1 網頁編纂器與CKf
網頁設計 CKeditor 4.11.1 網頁編纂器與CKf

檔案下載了以後,覆蓋之前檔案
找到 ckeditor/config.js

  1. CKEDITOR.editorConfig = function( config ) {
  2.         // Define changes to default configuration here. For example:
  3.         // config.language = 'fr';
  4.         // config.uiColor = '#AADC6E';
  5. }網頁設計
文章標籤

paineyva1xk 發表在 痞客邦 留言(0) 人氣()



CSS網頁設計
  1. body{ text-align:center;}
  2. *{ margin:0; padding:0;}
  3. img{ border:none;}
  4. #container{ width:900px; height:900px; background:#000000; border:1px solid #006633; margin:auto; padding:0;}
  5. #loader{ width:480px; margin:auto; height:500px; background:#FFFFFF; float:left; margin-right:5px;}
  6. #imageOptions{ float:left;}
  7. #imageOptions li{ list-style:none; margin:10px;}
  8. .loading{ background:url(images/spinner.gif) center center no-repeat;}
  9. h3{ line-height:500px;}
複製代碼
文章標籤

paineyva1xk 發表在 痞客邦 留言(0) 人氣()

網頁設計

 

 

文章標籤

paineyva1xk 發表在 痞客邦 留言(0) 人氣()

IPFS利用有哪些

 

文章標籤

paineyva1xk 發表在 痞客邦 留言(0) 人氣()

網頁設計 

上傳測試HelloWorld:
文章標籤

paineyva1xk 發表在 痞客邦 留言(0) 人氣()