FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ipython/IPython/utils/importstring.py at main · ipython/ipython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
ipython
/
ipython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
4.5k
Star
16.8k
Code
Issues
1.2k
Pull requests
30
Actions
Projects
Wiki
Security and quality
2
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
ipython
/
IPython
/
utils
/
importstring.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (33 loc) · 1.07 KB
Breadcrumbs
ipython
/
IPython
/
utils
/
importstring.py
Copy path
File metadata and controls
41 lines (33 loc) · 1.07 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
A simple utility to import something by its string name.
"""
from
__future__
import
annotations
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
from
typing
import
Any
def
import_item
(
name
:
str
)
->
Any
:
"""Import and return ``bar`` given the string ``foo.bar``.
Calling ``bar = import_item("foo.bar")`` is the functional equivalent of
executing the code ``from foo import bar``.
Parameters
----------
name : string
The fully qualified name of the module/package being imported.
Returns
-------
mod : module object
The module that was imported.
"""
parts
=
name
.
rsplit
(
"."
,
1
)
if
len
(
parts
)
==
2
:
# called with 'foo.bar....'
package
,
obj
=
parts
module
=
__import__
(
package
,
fromlist
=
[
obj
])
try
:
pak
=
getattr
(
module
,
obj
)
except
AttributeError
as
e
:
raise
ImportError
(
"No module named %s"
%
obj
)
from
e
return
pak
else
:
# called with un-dotted string
return
__import__
(
parts
[
0
])
Back
|
FazBrowse Home
|
New Git URL