Metadata-Version: 1.1
Name: pyramid-autoroute
Version: 1.2.0
Summary: Pyramid addon to auto detects views
Home-page: http://docs.pylonsproject.org
Author: UNKNOWN
Author-email: UNKNOWN
License: BSD-derived (http://www.repoze.org/LICENSE.txt)
Description: pyramid_autoroute is a package for generating pyramid routes for URL Dispath base on view location in python packages starting from predefined root module.
        
        i.e. if a view is located in views.foo.bar.baz:AView and the root_module is views
        automatic path to view will be genereated as /foo/bar/baz/aview
        
        Installation
        
        1. install egg using pip or easy_install
        2. in your application’s configuration you must add config.include('pyramid_autoroute') before config.scan()
        3. in configuration .ini file you have to add views root module:
        
        [app:myapp]
        pyramid.autoroute.root_module = myapp.views
        
        4. after launching application you will see i.e.:
        
        Auto generated routes:
        
        Name                             Path
        ----------------------------------------------------------------
        add3                             /myview
        home3                            /my_view
        add                              /abc/myview
        home                             /abc/my_view
        home2                            /abc/my_view2
        home5                            /test_aaa/my_view
        
        
        1.2.0:
        - Python 3 compatibility
        
        1.1.1:
        - omit None values for query string params in url_for
        
Keywords: web wsgi pylons pyramid
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Framework :: Pyramid
