當前位置: 首頁>>代碼示例>>Python>>正文


Python config.Config類代碼示例

本文整理匯總了Python中IPython.config.Config的典型用法代碼示例。如果您正苦於以下問題:Python Config類的具體用法?Python Config怎麽用?Python Config使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Config類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: activate

def activate(profile,mixed=False):
    dname = os.path.dirname(__file__)
    pdir = locate_profile(profile)

    jc = JSONFileConfigLoader('ipython_notebook_config.json',pdir)


    try:
        config = jc.load_config();
    except (ConfigFileNotFound,ValueError) as e:
        config = Config()
    if 'NotebookApp' in config:
        if ('tornado_settings' in config['NotebookApp']) or ('contents_manager_class' in config['NotebookApp']):
            # TODO, manually merge tornado settin if exist
            # but cannot do anythin automatically if contents_manager_calss is set
            raise ValueError('You already got some configuration that will conflict with google drive. Bailin out')
    if mixed :
        drive_config  = JSONFileConfigLoader('mixed_contents.json', dname).load_config()
    else :
        drive_config  = JSONFileConfigLoader('ipython_notebook_config.json', dname).load_config()
    config.merge(drive_config)
    print('Activating Google Drive integration for profile "%s"' % profile)
    config['nbformat'] = 1

    with io.open(os.path.join(pdir,'ipython_notebook_config.json'),'w', encoding='utf-8') as f:
        f.write(cast_unicode_py2(json.dumps(config, indent=2)))
開發者ID:nagyistoce,項目名稱:jupyter-drive,代碼行數:26,代碼來源:__init__.py

示例2: default_config

 def default_config(self):
     c = Config({
         'RevealHelpPreprocessor': {
             'enabled': True,
             },
         })
     c.merge(super(SlidesExporter,self).default_config)
     return c
開發者ID:Gwillink,項目名稱:ipython,代碼行數:8,代碼來源:slides.py

示例3: default_config

 def default_config(self):
     c = Config({
         'CSSHTMLHeaderPreprocessor':{
             'enabled':True
             }          
         })
     c.merge(super(HTMLExporter,self).default_config)
     return c
開發者ID:AJRenold,項目名稱:ipython,代碼行數:8,代碼來源:html.py

示例4: default_config

 def default_config(self):
     c = Config(
         {
             "GlobalConfigurable": {"display_data_priority": ["latex", "svg", "png", "jpg", "jpeg", "text"]},
             "ExtractFigureTransformer": {"enabled": True, "extra_ext_map": {"svg": "pdf"}},
         }
     )
     c.merge(super(LatexExporter, self).default_config)
     return c
開發者ID:ntezak,項目名稱:ipython,代碼行數:9,代碼來源:latex.py

示例5: default_config

 def default_config(self):
     c = Config({
         'CSSHTMLHeaderTransformer':{
             'enabled':True
             },
         'RevealHelpTransformer':{
             'enabled':True,
             },                
         })
     c.merge(super(RevealExporter,self).default_config)
     return c
開發者ID:dcafferty,項目名稱:ipython,代碼行數:11,代碼來源:reveal.py

示例6: default_config

 def default_config(self):
     c = Config({
         'GlobalConfigurable': {
             'display_data_priority' : ['latex', 'svg', 'png', 'jpg', 'jpeg' , 'text']
             },
          'ExtractFigureTransformer': {
                 'enabled':True,
                 'extra_ext_map':{'svg':'pdf'},
              }
      })
     c.merge(super(LatexExporter,self).default_config)
     return c
開發者ID:praveer13,項目名稱:ipython,代碼行數:12,代碼來源:latex.py

示例7: default_config

 def default_config(self):
     c = Config({
         'CSSHTMLHeaderPreprocessor':{
             'enabled':True
             },
         'RevealHelpPreprocessor':{
             'enabled':True,
             },                
         'HighlightMagicsPreprocessor': {
             'enabled':True
             }
         })
     c.merge(super(SlidesExporter,self).default_config)
     return c
開發者ID:ANB2,項目名稱:ipython,代碼行數:14,代碼來源:slides.py

示例8: default_config

 def default_config(self):
     c = Config({
         'NbConvertBase': {
             'display_data_priority' : ['text/javascript', 'text/html', 'application/pdf', 'image/svg+xml', 'text/latex', 'image/png', 'image/jpeg', 'text/plain']
             },
         'CSSHTMLHeaderPreprocessor':{
             'enabled':True
             },
         'HighlightMagicsPreprocessor': {
             'enabled':True
             }
         })
     c.merge(super(HTMLExporter,self).default_config)
     return c
開發者ID:Deca-Technologies,項目名稱:ipython,代碼行數:14,代碼來源:html.py

示例9: default_config

 def default_config(self):
     c = Config({
         'NbConvertBase': {
             'display_data_priority' : ['latex', 'png', 'jpg', 'svg', 'jpeg', 'text']
             },
          'ExtractFigureTransformer': {
                 'enabled':True
              },
          'SVG2PDFTransformer': {
                 'enabled':True
              },
          'LatexTransformer': {
                 'enabled':True
              }
      })
     c.merge(super(LatexExporter,self).default_config)
     return c
開發者ID:kinverarity1,項目名稱:ipython,代碼行數:17,代碼來源:latex.py

示例10: default_config

 def default_config(self):
     c = Config({
         'NbConvertBase': {
             'display_data_priority' : ['latex', 'pdf', 'png', 'jpg', 'svg', 'jpeg', 'text']
             },
          'ExtractOutputPreprocessor': {
                 'enabled':True
              },
          'SVG2PDFPreprocessor': {
                 'enabled':True
              },
          'LatexPreprocessor': {
                 'enabled':True
              },
          'SphinxPreprocessor': {
                 'enabled':True
              }
      })
     c.merge(super(LatexExporter,self).default_config)
     return c
開發者ID:AJRenold,項目名稱:ipython,代碼行數:20,代碼來源:latex.py

示例11: default_config

 def default_config(self):
     c = Config({
         'NbConvertBase': {
             'display_data_priority' : ['text/latex', 'application/pdf', 'image/png', 'image/jpeg', 'image/svg+xml', 'text/plain']
             },
          'ExtractOutputPreprocessor': {
                 'enabled':True
              },
          'SVG2PDFPreprocessor': {
                 'enabled':True
              },
          'LatexPreprocessor': {
                 'enabled':True
              },
          'SphinxPreprocessor': {
                 'enabled':True
              },
          'HighlightMagicsPreprocessor': {
                 'enabled':True
              }
      })
     c.merge(super(LatexExporter,self).default_config)
     return c
開發者ID:AnneTheAgile,項目名稱:ipython,代碼行數:23,代碼來源:latex.py

示例12: default_config

 def default_config(self):
     c = Config({"CSSHTMLHeaderPreprocessor": {"enabled": True}, "HighlightMagicsPreprocessor": {"enabled": True}})
     c.merge(super(HTMLExporter, self).default_config)
     return c
開發者ID:kmike,項目名稱:ipython,代碼行數:4,代碼來源:html.py

示例13: default_config

 def default_config(self):
     c = Config({'ExtractOutputPreprocessor':{'enabled':True}})
     c.merge(super(RSTExporter,self).default_config)
     return c
開發者ID:2t7,項目名稱:ipython,代碼行數:4,代碼來源:rst.py

示例14: default_config

 def default_config(self):
     c = Config({'ExtractFigureTransformer':{'enabled':True}})
     c.merge(super(RstExporter,self).default_config)
     return c
開發者ID:breisfeld,項目名稱:ipython,代碼行數:4,代碼來源:rst.py

示例15: default_config

 def default_config(self):
     c = Config({"CSSHTMLHeaderTransformer": {"enabled": True}})
     c.merge(super(RevealExporter, self).default_config)
     return c
開發者ID:praveer13,項目名稱:ipython,代碼行數:4,代碼來源:reveal.py


注:本文中的IPython.config.Config類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。