Tagged Questions
0
votes
1answer
202 views
Python CGI script, i am not able to pass '+' plus operator as a parameter
I am trying to pass a parameter to a python cgi script, this parameter contains the plus operator.
/cgi-bin/test.py?input=print%20"%20"%20"%20%20-+-\"
The python cgi script is simple:
...
0
votes
1answer
141 views
scrapy spider extracts correct url but is ignoring url parameters
I have a scrapy crawlspider that extracts links from an image map using the SgmlLinkExtractor in a rule like this,
Rule(SgmlLinkExtractor(allow_domains=('pressen-haas.de'),
...
6
votes
2answers
395 views
What are the URL parameters? (element at position #3 in urlparse result)
I've taken a look to urlparse.urlparse method documentation and I'm a little bit confused about what is the parameters part (not to be confused with the more familiar query part, that is what goes ...
1
vote
2answers
160 views
web2py: creating doctests that pass parameters
Hopefully a simple question, but it doesn't seem to be covered in the documentation or web2py book...
I've got a web2py controller method that looks something like:
def mymethod():
'''
...
3
votes
2answers
587 views
How to pass a url as a url parameter when there is a question mark in it?
I am using this line to pass the a url, main_id and user_tag_list to the handler:
self.response.out.write("""
<a href="/tc?url=%s&main_id=%s&user_tag_list=%s" title="edit tag set">edit ...
24
votes
2answers
7k views
Python Dictionary to URL Parameters
I am trying to convert a Python dictionary to a string for use as URL parameters. I am sure that there is a better, more Pythonic way of doing this. What is it?
x = ""
for key, val in {'a':'A', ...
