Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
117 views

How to construct relative url, given two absolute urls in Python

Is there a builtin function to get url like this: ../images.html given a base url like this: http://www.example.com/faq/index.html and a target url such as http://www.example.com/images.html I ...
5
votes
2answers
80 views

urlparse.urlparse returning 3 '/' instead of 2 after scheme

I'd like to add the 'http' scheme name in front of a given url string if it's missing. Otherwise, leave the url alone so I thought urlparse was the right way to do this. But whenever there's no scheme ...
4
votes
1answer
88 views

Getting the Parameter name of a Value in a URL request

I have a Python App Engine web app class that I am accessing with the following POST url: http://localhost:8087/moderate?5649364211118945661=on How can I get the Parameter name - not the value of the ...
4
votes
1answer
196 views

Which should I be using: urlparse or urlsplit?

Which URL parsing function pair should I be using and why? urlparse and urlunparse, or urlsplit and urlunsplit?
3
votes
2answers
152 views

Python script to see if a web page exists without downloading the whole page?

I'm trying to write a script to test for the existence of a web page, would be nice if it would check without downloading the whole page. This is my jumping off point, I've seen multiple examples use ...
3
votes
4answers
283 views

Problems parsing an URL with Python

I need to parse an URL. I'm currently using urlparse.urlparse() and urlparse.urlsplit(). The problem is that i can't get the "netloc" (host) from the URL when it's not present the scheme. I mean, if ...
3
votes
1answer
202 views

Is there predefined class for URL in Python?

I am looking for something like java.net.URL in python-modules, Django, Zope or wherever in Python. I want it preferably from the semantics reason, because the result of analysis of concerned program ...
3
votes
4answers
293 views

Python's `urlparse`: Adding GET keywords to a URL

I'm doing this: urlparse.urljoin('http://example.com/mypage', '?name=joe') And I get this: 'http://example.com/?name=joe' While I want to get this: 'http://example.com/mypage?name=joe' What ...
3
votes
3answers
2k views

Parse custom URIs with urlparse (Python)

My application creates custom URIs (or URLs?) to identify objects and resolve them. The problem is that Python's urlparse module refuses to parse unknown URL schemes like it parses http. If I do not ...
2
votes
2answers
382 views

Python - Parsing a string for URLs and extracting them

I know that with urllib you can parse a string and check if it's a valid URL. But how would one go about checking if a sentence contains a URL within it, and then extract that URL. I've seen some huge ...
2
votes
4answers
415 views

Python urlparse: small issue

I'm making an app that parses html and gets images from it. Parsing is easy using Beautiful Soup and downloading of the html and the images works too with urllib2. I do have a problem with urlparse ...
2
votes
3answers
138 views

parsing an url for crawler

i am writting an small crawler that extract some 5 to 10 sites while getting the links i am getting some urls like this ../tets/index.html if it is /test/index.html we can add with base url ...
1
vote
3answers
97 views

How do I remove a query string from URL using Python

Example: http://example.com/?a=text&q2=text2&q3=text3&q2=text4 After removing "q2", it will return: http://example.com/?q=text&q3=text3 In this case, there were multiple "q2" and ...
1
vote
5answers
121 views

Splitting a url into a list in python

I am currently working on a project that involves splitting a url. I have used the urlparse module to break up the url, so now I am working with just the path segment. The problem is that when I try ...
1
vote
2answers
485 views

How to parse a utf-8 encoded query parameter with Python 2.6

I have some lovely (Scandinavian?) user on my website complaining that I cannot parse his username in URLs, and hence I am showing him no results on his page on my website. I am pretty sure that the ...
1
vote
2answers
293 views

Python urlparse, correct or incorrect?

Python's urlparse function parses an url into six components (scheme, netloc, path and others stuff) Now I've found that parsing "example.com/path/file.ext" return no netloc but a path ...
0
votes
4answers
82 views

URL parsing in Python - normalizing double-slash in paths

I am working on an app which needs to parse URLs (mostly HTTP URLs) in HTML pages - I have no control over the input and some of it is, as expected, a bit messy. One problem I'm encountering ...
0
votes
1answer
118 views

PendingDeprecationWarning: cgi.parse_qsl is deprecated, use urlparse.parse_qsl instead

warning message: File "procesador.py", line 10, in <module> from model import * File "/Users/juque/Proyectos/est/patan/_patan/model.py", line 14, in <module> b_engine = ...
0
votes
1answer
103 views

Forcing urlparse.urlsplit to preserve str case

Is there any way to force urlparse's urlsplit function to preserve the case of the str passed in? It preserves the case of the path in the returned tuple, but not of the netloc, and this is important ...
0
votes
2answers
298 views

Python - Combining a url with urlunparse

Hi I'm new to Python so forgive me if this seems a little obvious but I can't see that it's been asked before. I'm writing something to 'clean' a URL. In this case all I'm trying to do is return a ...