English 中文(简体)
页: 1 1 错误
原标题:Python urllib2 http -1 error

对于其他使用者来说,这部法典是行得通的,但我却有奇怪的错误。

# -*- coding: utf-8 -*-

import re, sys
import urllib2
import urllib2_file


user_hash= MTggMzc6T1dZgggggzWXpWbVptggggHTXlOV1F5WWgggggggWT0%3D 
text_file =  sveikinimas.txt 

postdata = {  type :     40 ,
              description :   ,
              descr :  Pelėsiais ir kerpėm apaugus aukštai
Trakų štai garbinga pilis
.... ,
              filetype :  2 ,
              name :  Su šventėmis! ,
              file : { fd : open(text_file),  filename : text_file},
              nfo :                
     }

req = urllib2.Request( http://www.linkomanija.net/takefreak.php ,postdata)
req.add_header( Cookie ,  login=  + user_hash)
print req
response = urllib2.urlopen(req)
print response
html = response.read()
f = open("out.html", "wb")
f.write(html)
f.close()

该守则对另一个用户有用,但I m却有奇怪的错误:

<urllib2.Request instance at 0x0387C698>
Traceback (most recent call last):
  File "C:UsersdrakazDesktoplmhello.py", line 25, in <module>
    response = urllib2.urlopen(req)
  File "C:Python26liburllib2.py", line 126, in urlopen
    return _opener.open(url, data, timeout)
  File "C:Python26liburllib2.py", line 392, in open
    response = self._open(req, data)
  File "C:Python26liburllib2.py", line 410, in _open
     _open , req)
  File "C:Python26liburllib2.py", line 370, in _call_chain
    result = func(*args)
  File "C:UsersdrakazDesktoplmurllib2_file.py", line 207, in http_open
    return self.do_open(httplib.HTTP, req)
  File "C:UsersdrakazDesktoplmurllib2_file.py", line 298, in do_open
    return self.parent.error( http , req, fp, code, msg, hdrs)
  File "C:Python26liburllib2.py", line 436, in error
    return self._call_chain(*args)
  File "C:Python26liburllib2.py", line 370, in _call_chain
    result = func(*args)
  File "C:Python26liburllib2.py", line 519, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error -1:
问题回答

The error message is from urllib2_file. I believe, it is not proper. You may just wish to comment it and try if it that module is not being used.

我也看到,在员额数据中,你有另一个字典。 情况不应如此。 档案内容也是如此。 阅读文档,并将其内容作为示意图。 没有起诉书,没有档案。





相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签