The urlparse tag has no wiki summary.
0
votes
0answers
16 views
Handle x-www-form-urlencoded content in Tastypie?
I use jQuery Ajax to post the CkEditor inline edited content to Tastypie. The content contains HTML tags and Chinese characters. This is what I have right now:
**api serializer**
class ...
1
vote
1answer
46 views
find network location from URL elegantly [duplicate]
code:
import urlparse
url1 = 'http://try.github.io//levels/1/challenges/1'
netloc1 = urlparse.urlparse(url1)[1] #try.github.io
url2 = 'https://github.com/explore'
netloc2 = ...
0
votes
1answer
73 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
56 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
70 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
66 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
31 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
73 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
157 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
291 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
43 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
122 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
48 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
91 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
515 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
56 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
592 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
84 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
115 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
383 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¶m2=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
120 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:
...
8
votes
2answers
513 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
98 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
1k 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
842 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
469 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
241 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
616 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
616 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 ...
5
votes
2answers
654 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
253 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 = ...
7
votes
2answers
574 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 ...
9
votes
1answer
877 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
844 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
922 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 ...
4
votes
2answers
1k views
Combining a url with urlunparse
I'm writing something to 'clean' a URL. In this case all I'm trying to do is return a faked scheme as urlopen won't work without one. However, if I test this with www.python.org It'll return ...
2
votes
3answers
235 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
549 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
4answers
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 ...


