Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90448577
__init__.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 18:51
Size
840 B
Mime Type
text/x-python
Expires
Sun, Nov 3, 18:51 (2 d)
Engine
blob
Format
Raw Data
Handle
22021494
Attached To
rAKA akantu
__init__.py
View Options
import
sys
as
__aka_sys
def
export
(
definition
):
"""
Decorator to export definitions from sub-modules to the top-level package
:param definition: definition to be exported
:return: definition
"""
__module
=
__aka_sys
.
modules
[
definition
.
__module__
]
__pkg
=
__aka_sys
.
modules
[
__module
.
__package__
]
__pkg
.
__dict__
[
definition
.
__name__
]
=
definition
if
'__all__'
not
in
__pkg
.
__dict__
:
__pkg
.
__dict__
[
'__all__'
]
=
[]
__pkg
.
__all__
.
append
(
definition
.
__name__
)
return
definition
try
:
from
termcolor
import
colored
except
ImportError
:
# noinspection PyUnusedLocal
def
colored
(
string
,
*
args
,
**
kwargs
):
return
string
__all__
=
[
'colored'
]
from
.
import
truss_fe
# NOQA: F401
from
.
import
static_solver
# NOQA: F401
from
.
import
dynamic_solver
# NOQA: F401
Event Timeline
Log In to Comment