##// END OF EJS Templates
make CORS configurable...
make CORS configurable allows setting CORS headers. - cors_origin sets Access-Control-Allow-Origin directly - cors_origin_pat allows setting Access-Control-Allow-Origin via regular expression, since the header spec itself doesn’t support complex access[1] - cors_credentials sets Access-Control-Allow-Credentials: true To allow CORS from everywhere: ipython notebook —NotebookApp.cors_origin='*'

File last commit:

r16473:f237f2f2
r17106:600762a6
Show More
cloudpickle.rst
5 lines | 275 B | text/x-rst | RstLexer
  • Adds a use_cloudpickle method to DirectView objects, which works like view.use_dill(), but causes the cloudpickle module from PiCloud's cloud library to be used rather than dill or the builtin pickle module.