When you just want to import everything.
As a standard import:
>>> import everything
>>> len(everything.sys.argv) > 0 and 'this works'
'this works'Installed any other modules? Not to worry! Import those too:
app = everything.flask.Flask(__name__)
app.run()Have an irrational fear of import <module>. Soothe it with everything:
>>> from everything import json
>>> json.dumps({'this_works': True})
'{"this_works": true}'Use every pre-loaded module willy-nilly:
>>> from everything import *
>>> isinstance(sys.argv, list) and 'this works too'
'this works too'But it only works for pre-loaded modules!
>>> from everything import *
>>> decimal.Decimal('0.01')
Traceback (most recent call last):
...
NameError: name 'decimal' is not defined DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2014 Eddie Antonio Santos <easantos@ualberta.ca>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.