The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
32 views

Python urlparse.parse_qs unicode url

urlparse.parse_qs is usefull for parsing url parameters, and it works fine with simple ASCII url, represented by str. So i can parse a query and then construct the same path using urllib.urlencode ...
-4
votes
3answers
43 views

ruby regex url - base url and params [closed]

I am parsing a log file and I want to extract base url and params from url string. sample urls: Started GET "/api/node_tree?app_name=c&id=0" for 127.0.0.1 at 2013-04-26 11:47:29 +0530 Started ...
-6
votes
1answer
63 views

How to through a list with urlparse [closed]

How to through a list with urlparse, for example: from urlparse import urlparse class Paste(models.Model): paste = models.TextField() def render_url(self): return ['{0}'.format(url) ...
3
votes
1answer
53 views

Why is urlparse.urlenparse works inconsistent?

When netloc is empty urlparse.urlunparse is inconsistent: >>> urlparse.urlunparse(('http','','test_path', None, None, None)) 'http:///test_path' >>> ...
0
votes
1answer
30 views

Urlecoding a string back from a dictionary

I am trying to remove certain items from a query string, the best way doing this would be to parse the query string, iterate over and remove the particular key I dont want and join it all back ...
1
vote
3answers
67 views

Fetch a particular part of the url in python

I am using python and trying to fetch a particular part of the url as below from urlparse import urlparse as ue url = "https://www.google.co.in" img_url = ue(url).hostname Result www.google.co.in ...
2
votes
3answers
138 views

Find http:// and or www. and strip from domain. leaving domain.com

I'm quite new to python. I'm trying to parse a file of URLs to leave only the domain name. some of the urls in my log file begin with http:// and some begin with www.Some begin with both. This is ...
5
votes
2answers
217 views

Python urlparse — extract domain name without subdomain

Need a way to extract a domain name without the subdomain from a url using Python urlparse. For example, I would like to extract "google.com" from a full url like "http://www.google.com". The ...
0
votes
0answers
40 views

Changing urlparse.uses_ after first parse doesn't have an effect

I'm using a custom scheme in a URI for an internal tool, and learned that urlparse won't extract fragments automatically. I traced it to this bug: http://bugs.python.org/issue9374 While ...
1
vote
1answer
114 views

Javascript equivalent of Python's urlparse.parse_qs()?

I am using python to generate a query string which will then be parsed by javascript. Consider a fairly "complex" piece of data: import urllib params = { 'record': 'customer', ...
0
votes
1answer
47 views

Urlparse and '\n'

I have: from urlparse import urlparse s = "http://google.com" + "\n" # this line is read from file, when I loop over file's lines urlparse(s) ParseResult(scheme='http', netloc='google.com\n', ...
1
vote
2answers
75 views

Odd behavior with urlparse

I was wondering if there are known workarounds to some odd behavior I'm seeing with python's urlparse. Here are some results from a couple of lines in the python interpeter: >>> import ...
0
votes
1answer
440 views

Adding parameter values to a url in flask python

I have the code for the following url:http://localhost/summary/myfile.csv I want the url to look like this:http://localhost/summary?file=myfile.csv The code is to be written in flask. My code for ...
0
votes
0answers
55 views

API URL in a class [closed]

I'm creating a python REST API wrapper to a website, I created a file called api.py, then used called the API using requests, like so: requests.get('http://example.com/api', ...
2
votes
2answers
461 views

Python: How to check if a string is a valid IRI?

Is there a standard fuction to check an IRI, to check an URL apparently I can use: parts = urlparse.urlsplit(url) if not parts.scheme or not parts.netloc: '''apparently not an url''' ...
2
votes
2answers
80 views

Python CSV row value based flow control

I am working with a CSV that has the following structure: "2012-09-01 20:03:15","http://example.com" The data is a cleaned up dump of my browsing history. I am interested in counting the first five ...
1
vote
2answers
111 views

Python urlparse.unparse_qsl?

In Python's urlparse, you can use urlparse to parse the URL, and then parse_qsl to parse the query. I want to remove a query (name, value) pair, and then reconstruct the URL. There is a urlunparse ...
2
votes
1answer
308 views

Parse query part from url

I want to parse query part from url, this is my code to do this: >>> from urlparse import urlparse, parse_qs >>> url = '/?param1&param2=2' >>> ...
0
votes
2answers
1k views

Best way to get query string from a URL in python?

I have this url = http://stackoverflow.com/questions/ask?next=1&value=3 Now I need to get the query string from this url. I don;t wanna use request.META for getting query string. How ever I ...
0
votes
3answers
108 views

How to insert an additional path into URL using PHP?

Let say I've this URL: http://example.com/image-title/987654/ I want to insert "download" to the part between "image-title" and "987654" so it would look like: ...
7
votes
2answers
411 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 ...
0
votes
2answers
97 views

splitting a path with python

I am trying to get cut everything off after the last decimal and add "html" to the end html <a ...
0
votes
4answers
996 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 ...
1
vote
3answers
790 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 ...
7
votes
2answers
443 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
238 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
564 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 ...
1
vote
5answers
569 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 ...
3
votes
2answers
600 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 ...
4
votes
5answers
2k 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 ...
0
votes
1answer
245 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 = ...
6
votes
2answers
535 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 ...
8
votes
1answer
833 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?
2
votes
2answers
1k 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
2answers
1k 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 ...
4
votes
4answers
806 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 ...
0
votes
1answer
153 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 ...
2
votes
4answers
888 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 ...
3
votes
2answers
1k 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 ...
2
votes
3answers
234 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
2answers
526 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 ...
8
votes
3answers
5k 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 ...