Skip to content

Instantly share code, notes, and snippets.

@sirn
Last active January 1, 2016 20:09
Show Gist options
  • Select an option

  • Save sirn/8194660 to your computer and use it in GitHub Desktop.

Select an option

Save sirn/8194660 to your computer and use it in GitHub Desktop.
Python 3.2.3 (default, Sep 25 2013, 18:22:43)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from pkg_resources import get_provider
>>> get_provider('pyramid_debugtoolbar')
<pkg_resources.DefaultProvider object at 0x7fe9141ad710>
>>>
Python 3.2.3 (default, Sep 25 2013, 18:22:43)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import celery
>>> celery.Celery()
<Celery __main__:0x7f2d1fcd7d90>
>>> from pkg_resources import get_provider
>>> get_provider('pyramid_debugtoolbar')
<pkg_resources.NullProvider object at 0x1459910>
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment