vote up 0 vote down star
>>> os.path.basename('http://example.com/file.txt')
'file.txt'

.. and I thought os.path.* work only on local paths and not URLs? Note that the above example was run on Windows too .. with similar result.

flag

59% accept rate
Clarification: I am not asking about /why/ it works (for which the source code is obviously way to go); rather I am asking why should it work at all (by policy - especially on Windows '\' is path separator) – Sridhar Ratnakumar Jul 11 at 2:51

4 Answers

vote up 3 vote down check

In practice many functions of os.path are just string manipulation functions (which just happen to be especially handy for path manipulation) -- and since that's innocuous and occasionally handy, while formally speaking "incorrect", I doubt this will change anytime soon -- for more details, use the following simple one-liner at a shell/command prompt:

$ python -c"import sys; import StringIO; x=StringIO.StringIO(); sys.stdout=x; import this; sys.stdout = sys.__stdout__; print x.getvalue().splitlines()[10][9:]"
link|flag
1  
I have to say the one-liner is very impressive. – sunqiang Jul 11 at 1:52
on windows: s/'/"/g – ars Jul 11 at 1:59
@ars, tx, " is indeed better AND cross-platform so I edited. @sunqiang, glad you liked it!-) – Alex Martelli Jul 11 at 2:21
Heh. Anyways, it seems to me that using os.path.basename (or split, or whatnot) in this maner (by passing URL) is evil .. as this is not a documented behavior (and might change in future). – Sridhar Ratnakumar Jul 11 at 2:58
@srid, yep -- theurl.rsplit('/',1)[1] is definitely a better, safer approach. – Alex Martelli Jul 11 at 3:28
show 1 more comment
vote up 2 vote down

On windows, look at the source code: C:\Python25\Lib\ntpath.py

def basename(p):
    """Returns the final component of a pathname"""
    return split(p)[1]

os.path.split (in the same file) just split "\" (and sth. else)

link|flag
vote up 1 vote down

Use the source Luke:


def basename(p):
    """Returns the final component of a pathname"""
    i = p.rfind('/') + 1
    return p[i:]

Edit (response to clarification):

It works for URLs by accident, that's it. Because of that, exploiting its behaviour could be considered code smell by some.

Trying to "fix" it (check if passed path is not url) is also surprisingly difficult

www.google.com/test.php
me@other.place.com/12
./src/bin/doc/goto.c

are at the same time correct pathnames and URLs (relative), so is the http:/hello.txt (one /, and only on linux, and it's kinda stupid :)). You could "fix" it for absolute urls but relative ones will still work. Handling one special case in differently is a big no no in the python world.

To sum it up: import this

link|flag
vote up 0 vote down

Why? Because it's useful for parsing URLs as well as local file paths. Why not?

link|flag
Because it's in the os.path module, and that isn't a path as understood by the OS if you're running windows; the path seperator is different. I believe that / is a valid filename character in Windows, which would make a URL a valid falename, and this behaviour incorrect. I'm not a Windows user, so some, or all of, this comment might be gibberish. – SpoonMeiser Jul 11 at 1:29
1  
@SpoonMeiser, Microsoft's implementation of the C library actually lets you use / as a valid alternative to \ (the OS itself, at syscall/Win32API levels, did up to a point, but I think it doesn't since a few years ago;-). – Alex Martelli Jul 11 at 1:37
@Alex Martelli, If that's still true, then that would make sense. – SpoonMeiser Jul 11 at 10:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.