江jh 2020-02-23 12:54 采纳率: 87.5%
浏览 711
已采纳

python2.7idle(python gui)运行代码文件不读取代码怎么办?

python代码:

#!/usr/bin/env python
# coding=utf-8
#import importlib,sys
#import sys
#sys.setdefaultencoding('gbk')

import sys
import imp
import sys
reload(sys)
sys.setdefaultencoding('utf8')
import jieba
import json
from bs4 import BeautifulSoup
import urllib.request
import urllib3
import re
import os,os.path
import codecs
import requests 

def getHtml(url):
    global html
    page = urllib.request.urlopen(url)
    html = page.read()
    return html

def download_file(download_url,file_name):
    print(download_url)
    headers = {'User-Agent':'Mozilla/5.0 (Windows NT 6.1)AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11'} 
    #req = urllib.request(download_url,headers=headers)     
    response = urllib.request.urlopen(download_url)#(req)
    file = open(file_name, 'wb')
    file.write(response.read())


    file.close()
    print(file_name)
    print("Completed : .... %d  ..." % x)

save_path = 'E:\\2345Downloads'
url = 'https://www.lfd.uci.edu/'
html = getHtml(url)
html='''<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!-- saved from url=(0048)https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<li><a id="aiohttp"></a><strong><a href="https://github.com/KeepSafe/aiohttp/">Aiohttp</a></strong>: a http client/server for asyncio.
<ul>
<li><a href="javascript:;" onclick=" javascript:dl([101,111,51,46,118,106,97,54,53,100,95,119,52,110,56,45,99,104,112,116,47,113,108,109,105,50,115], &quot;IH4DA37BC5G0@BBA&gt;1262H&gt;?A1=&gt;?A1=&gt;:G&lt;95F86;2:@E&quot;); &quot;javascript: dl(&quot;" title="[631 KB] [Oct 10, 2019]">aiohttp‑3.6.2‑cp38‑cp38‑win_amd64.whl</a></li>
<li><a href="javascript:;" onclick=" javascript:dl([101,118,53,99,112,47,113,51,106,105,45,54,116,110,50,56,111,104,119,46,108,115,97], &quot;D=75301;4E8?@;;396B:B=9236&gt;9236&gt;9A8&lt;6=BA@C&quot;); &quot;javascript: dl(&quot;" title="[600 KB] [Oct 10, 2019]">aiohttp‑3.6.2‑cp38‑cp38‑win32.whl</a></li>
<li><a href="javascript:;" onclick=" javascript:dl([101,118,47,100,45,97,109,52,99,115,53,104,106,108,54,116,51,55,95,105,46,110,112,50,111,119,113], &quot;8F;IE09&gt;14BG:&gt;&gt;E3?C=CF37E?@37E?@53HBDA452=6CH:&lt;&quot;); &quot;javascript: dl(&quot;" title="[624 KB] [Oct 10, 2019]">aiohttp‑3.6.2‑cp37‑cp37m‑win_amd64.whl</a></li>
<li><a href="javascript:;" onclick=" javascript:dl([101,118,99,45,104,112,116,119,47,113,109,97,110,50,106,111,105,115,108,46,53,55,51,54], &quot;@&lt;=840C57:?&gt;35542EBFB&lt;214ED214ED926?;E&lt;B63A&quot;); &quot;javascript: dl(&quot;" title="[596 KB] [Oct 10, 2019]">aiohttp‑3.6.2‑cp37‑cp37m‑win32.whl</a></li>
<li><a href="javascript:;" onclick=" javascript:dl([101,50,109,54,104,47,112,52,115,51,99,110,108,118,119,97,46,95,113,53,100,45,106,116,111,105], &quot;70EA5&lt;BF4&gt;HG3FF5D8?2?0D9582D95821D=H:@&gt;1C26?=3;&quot;); &quot;javascript: dl(&quot;" title="[617 KB] [Oct 10, 2019]">aiohttp‑3.6.2‑cp36‑cp36m‑win_amd64.whl</a></li>
<li><a href="javascript:;" onclick=" javascript:dl([101,113,111,54,115,47,109,46,45,104,118,119,50,105,99,108,97,106,110,53,116,112,51], &quot;3;@0D9BC4?&lt;18CCD7E626;7=DE27=DE257:&lt;AE;6:8&gt;&quot;); &quot;javascript: dl(&quot;" title="[590 KB] [Oct 10, 2019]">aiohttp‑3.6.2‑cp36‑cp36m‑win32.whl</a></li>
<li><a href="javascript:;" onclick=" javascript:dl([101,115,51,118,52,113,50,110,97,95,54,112,100,104,47,119,53,106,109,46,105,108,111,116,45,99], &quot;05@4:2?F=H:1?=7CE&lt;FF:G1B9B5GH:1?GH:1?AG&gt;C687A;93B&gt;&lt;D&quot;); &quot;javascript: dl(&quot;" title="[612 KB] [Oct 10, 2019]">aiohttp‑3.6.2‑cp35‑cp35m‑win_amd64.whl</a></li>
<li><a href="javascript:;" onclick=" javascript:dl([101,106,54,118,108,104,116,110,111,105,97,99,113,115,50,47,112,51,46,119,45,109,53], &quot;&lt;=0;?2E5&gt;:?@E&gt;987455?C@A1A=C:?@EC:?@EDCB86@=AB43&quot;); &quot;javascript: dl(&quot;" title="[584 KB] [Oct 10, 2019]">aiohttp‑3.6.2‑cp35‑cp35m‑win32.whl</a></li>

'''
print('html done')
#html.decode('utf-8')
#print(html)
headers = {'User-Agent':'Mozilla/5.0 (Windows NT 6.1)AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11'} 
r = requests.get(url, headers = headers)

r.encoding = "utf-8"

soup = BeautifulSoup(r.text, "html.parser")
#html_mod=re.sub(pattern=".",repl=".",string=html.decode('utf-8'))
for link in soup.find_all('a'): #soup.find_all返回的为列表
    print(link.get('href'))
    #name_list+=link



name_list = html#soup.find_all('a')#re.findall(r']">*-cp38-win_amd64.whl',html.decode('utf-8'))
x=1

files=os.listdir(save_path)
print(files)
print(type(name_list))
name_list=str(name_list)
name_list1=[]
#print(name_list)
#for name in name_list:

global k
k=0
   # name[k]=str(name1[k])
for i in range(len(name_list)):
    j=0
    if name_list[i-2:i+1]==']">':

        name_list1.append(name_list[i+1:i+50])

        global m

        if k<len(name_list1):
            for l in range(len(name_list1[k])):
                if l-9>=0:
                    if name_list1[k][l-9:l]=='amd64.whl':

                        j=1

                        m=l
        if j==1:
            name_list1[k]=name_list1[k][0:m]
            k+=1


    '''if j==0:
    name_list.remove(name)'''


 #file_name = os.path.join(save_path ,name)

#print(name)
print(name_list1)
for name in name_list1:
    if name in files:
     continue
    print('no:'+str(x))
    print('\ndownload'+name)
   # importlib.reload(sys)
    #imp.reload(sys)
    download_file('https://download.lfd.uci.edu/pythonlibs/s2jqpv5t/'+name,save_path)

    x=x+1
print(name_list)
print('finished')

运行之后就像这样
Python 2.7.17 (v2.7.17:c2f86d86e6, Oct 19 2019, 21:01:17) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.

================== RESTART: E:\2345Downloads\111 - 副本.py ==================

运行helloworld没问题:
代码:

print('helloworld')

运行结果:

======================= RESTART: E:/2345Downloads/2.py =======================
helloworld

  • 写回答

1条回答 默认 最新

  • dabocaiqq 2020-02-23 13:06
    关注
    Python2.7默认使用的字符集是ASCII,并不支持中文字符的显示与处理,因些如果要在Python中处理中文就需要进行一些额外的处理。
    
    一、在开头处声明Python使用UTF-8编码显示字符
    
    #/usr/bin/env python
    # -*- coding: UTF-8 -*-
    但这样做,只是让你的程序在运行的过程中显示中文,如果你要将中文字符存储在文件中,或者写入到数据库中,这样的设置是不能满足你的需要。
    
    二、设置系统默认字符编码
    
    import sys
    reload(sys)
    sys.setdefaultencoding('utf-8')
    也许是Python的bug在import sys后必须再一次reload(sys),下面去设置默认字符编码的语句才能生效。
    
    三、遇到需要处理中文的地方,就随时进行UTF-8编码
    
    经常会遇到的是,进行了第一步和第二步设置后,还是无法正常显示和处理中文字符,这时也只能随用随编码了。
    假设待处理字符串为string
    使用下面的语句进行utf-8编码:
    
    string.encode('utf-8')
    使用下面的语句进行utf-8解码:
    
    unicode(string, encoding='utf-8')
    
    如果为了方便可以将上面二个语句写成方法随时调用:
    
    def encode_utf8(string):
        return string.encode('utf-8')
    
    def decode_utf8(string)
        return unicode(string, encoding='utf-8')
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥35 平滑拟合曲线该如何生成
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 自己瞎改改,结果现在又运行不了了
  • ¥15 链式存储应该如何解决
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站