annotate python/open.py @ 694:ebca6d85213a

File "/usr/lib/python3/dist-packages/IPython/config/__init__.py", line 16, in <module> from .application import * File "/usr/lib/python3/dist-packages/IPython/config/application.py", line 31, in <module> from IPython.config.configurable import SingletonConfigurable File "/usr/lib/python3/dist-packages/IPython/config/configurable.py", line 33, in <module> from IPython.utils.text import indent, wrap_paragraphs File "/usr/lib/python3/dist-packages/IPython/utils/text.py", line 28, in <module> from IPython.external.path import path File "/usr/lib/python3/dist-packages/IPython/external/path/__init__.py", line 2, in <module> from path import * File "/home/jhammel/python/path.py", line 25 print root(path) ^
author Jeff Hammel <k0scist@gmail.com>
date Wed, 09 Jul 2014 16:26:49 -0700
parents 2025368488ee
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
398
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
1 def load(resource):
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
2 """
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
3 open a file or URL for reading. If the passed resource string is not a URL,
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
4 or begins with 'file://', return a ``file``. Otherwise, return the
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
5 result of urllib2.urlopen()
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
6 """
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
7
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
8 # handle file URLs separately due to python stdlib limitations
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
9 if resource.startswith('file://'):
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
10 resource = resource[len('file://'):]
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
11
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
12 if not is_url(resource):
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
13 # if no scheme is given, it is a file path
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
14 return file(resource)
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
15
2025368488ee adding python/open.py
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
16 return urllib2.urlopen(resource)