.gitignore
.gitmodules
LICENSE
README.md
edmunds-instance
mkdocs.yml
requirements.txt
setup.cfg
setup.config.ini
setup.py
.circleci/config.yml
.circleci/gh-pages.config.yml
config/app.py
docs/index.md
docs/coreconcepts/applicationmiddleware.md
docs/coreconcepts/serviceproviders.md
docs/data/caching.md
docs/data/database.md
docs/data/migrations.md
docs/data/orm.md
docs/data/storage.md
docs/gettingstarted/configuration.md
docs/gettingstarted/console.md
docs/gettingstarted/debuggingandprofiling.md
docs/gettingstarted/errorsandlogging.md
docs/gettingstarted/installation.md
docs/http/inputandvalidation.md
docs/http/request.md
docs/http/requestmiddleware.md
docs/http/response.md
docs/http/routing.md
docs/http/session.md
docs/http/visitor.md
docs/localization/formatting.md
docs/localization/localization.md
docs/localization/location.md
docs/localization/translations.md
docs/testing/gettingstarted.md
edmunds/__init__.py
edmunds/application.py
edmunds/globals.py
edmunds-instance/__init__.py
edmunds-instance/appengine_config.py
edmunds-instance/main.py
edmunds-instance/manage.py
edmunds-instance/app/__init__.py
edmunds-instance/app/console/__init__.py
edmunds-instance/app/console/manager.py
edmunds-instance/app/console/commands/__init__.py
edmunds-instance/app/console/commands/helloworldcommand.py
edmunds-instance/app/database/__init__.py
edmunds-instance/app/database/models/__init__.py
edmunds-instance/app/database/models/role.py
edmunds-instance/app/database/models/user.py
edmunds-instance/app/database/tables/__init__.py
edmunds-instance/app/database/tables/userstable.py
edmunds-instance/app/exceptions/__init__.py
edmunds-instance/app/exceptions/handler.py
edmunds-instance/app/foundation/__init__.py
edmunds-instance/app/foundation/myapplicationmiddleware.py
edmunds-instance/app/http/__init__.py
edmunds-instance/app/http/routes.py
edmunds-instance/app/http/controllers/__init__.py
edmunds-instance/app/http/controllers/homecontroller.py
edmunds-instance/app/http/middleware/__init__.py
edmunds-instance/app/http/middleware/myrequestmiddleware.py
edmunds-instance/app/providers/__init__.py
edmunds-instance/app/providers/myserviceprovider.py
edmunds-instance/bootstrap/__init__.py
edmunds-instance/bootstrap/myapp.py
edmunds-instance/config/__init__.py
edmunds-instance/config/appconfig.py
edmunds-instance/config/cachingconfig.py
edmunds-instance/config/databaseconfig.py
edmunds-instance/config/localizationconfig.py
edmunds-instance/config/loggingconfig.py
edmunds-instance/config/profilerconfig.py
edmunds-instance/config/storageconfig.py
edmunds-instance/tests/__init__.py
edmunds-instance/tests/gaetestcase.py
edmunds-instance/tests/testcase.py
edmunds-instance/tests/testmycase.py
edmunds/auth/__init__.py
edmunds/auth/middleware/__init__.py
edmunds/auth/middleware/basicauthmiddleware.py
edmunds/auth/middleware/rolesacceptedmiddleware.py
edmunds/auth/middleware/rolesrequiredmiddleware.py
edmunds/auth/middleware/sessionauthmiddleware.py
edmunds/auth/middleware/tokenauthmiddleware.py
edmunds/auth/models/__init__.py
edmunds/auth/models/role.py
edmunds/auth/models/user.py
edmunds/auth/providers/__init__.py
edmunds/auth/providers/authserviceprovider.py
edmunds/auth/tables/__init__.py
edmunds/auth/tables/roletable.py
edmunds/auth/tables/userrolestable.py
edmunds/auth/tables/usertable.py
edmunds/cache/__init__.py
edmunds/cache/cachemanager.py
edmunds/cache/drivers/__init__.py
edmunds/cache/drivers/file.py
edmunds/cache/drivers/memcached.py
edmunds/cache/drivers/redis.py
edmunds/cache/providers/__init__.py
edmunds/cache/providers/cacheserviceprovider.py
edmunds/config/__init__.py
edmunds/config/config.py
edmunds/console/__init__.py
edmunds/console/command.py
edmunds/console/manager.py
edmunds/database/__init__.py
edmunds/database/databasemanager.py
edmunds/database/model.py
edmunds/database/table.py
edmunds/database/drivers/__init__.py
edmunds/database/drivers/mysql.py
edmunds/database/drivers/postgresql.py
edmunds/database/drivers/sqlite.py
edmunds/database/providers/__init__.py
edmunds/database/providers/databaseserviceprovider.py
edmunds/database/providers/migrateserviceprovider.py
edmunds/encoding/__init__.py
edmunds/encoding/encoding.py
edmunds/exceptions/__init__.py
edmunds/exceptions/exceptionsserviceprovider.py
edmunds/exceptions/handler.py
edmunds/foundation/__init__.py
edmunds/foundation/applicationmiddleware.py
edmunds/foundation/debugmiddleware.py
edmunds/foundation/concerns/__init__.py
edmunds/foundation/concerns/cache.py
edmunds/foundation/concerns/config.py
edmunds/foundation/concerns/database.py
edmunds/foundation/concerns/localization.py
edmunds/foundation/concerns/middleware.py
edmunds/foundation/concerns/requestrouting.py
edmunds/foundation/concerns/runtimeenvironment.py
edmunds/foundation/concerns/serviceproviders.py
edmunds/foundation/concerns/session.py
edmunds/foundation/concerns/storage.py
edmunds/foundation/database/__init__.py
edmunds/foundation/database/migratecommand.py
edmunds/foundation/database/nomigratecommand.py
edmunds/foundation/database/nomigratemanager.py
edmunds/foundation/patterns/__init__.py
edmunds/foundation/patterns/manager.py
edmunds/foundation/testing/__init__.py
edmunds/foundation/testing/testcase.py
edmunds/foundation/testing/testcommand.py
edmunds/gae/__init__.py
edmunds/gae/application.py
edmunds/gae/gaetestcase.py
edmunds/gae/runtimeenvironment.py
edmunds/http/__init__.py
edmunds/http/controller.py
edmunds/http/input.py
edmunds/http/request.py
edmunds/http/requestmiddleware.py
edmunds/http/response.py
edmunds/http/responsehelper.py
edmunds/http/visitor.py
edmunds/http/providers/__init__.py
edmunds/http/providers/httpserviceprovider.py
edmunds/localization/__init__.py
edmunds/localization/localizationmanager.py
edmunds/localization/localization/__init__.py
edmunds/localization/localization/localizator.py
edmunds/localization/localization/models/__init__.py
edmunds/localization/localization/models/localization.py
edmunds/localization/localization/models/number.py
edmunds/localization/localization/models/time.py
edmunds/localization/location/__init__.py
edmunds/localization/location/locationmanager.py
edmunds/localization/location/drivers/__init__.py
edmunds/localization/location/drivers/basedriver.py
edmunds/localization/location/drivers/googleappengine.py
edmunds/localization/location/drivers/maxmindcitydatabase.py
edmunds/localization/location/drivers/maxmindenterprisedatabase.py
edmunds/localization/location/drivers/maxmindwebservice.py
edmunds/localization/location/providers/__init__.py
edmunds/localization/location/providers/locationserviceprovider.py
edmunds/localization/providers/__init__.py
edmunds/localization/providers/localizationserviceprovider.py
edmunds/localization/translations/__init__.py
edmunds/localization/translations/sentencefiller.py
edmunds/localization/translations/translationsmanager.py
edmunds/localization/translations/drivers/__init__.py
edmunds/localization/translations/drivers/basedriver.py
edmunds/localization/translations/drivers/configtranslator.py
edmunds/localization/translations/exceptions/__init__.py
edmunds/localization/translations/exceptions/sentencefillererror.py
edmunds/localization/translations/exceptions/translationerror.py
edmunds/localization/translations/providers/__init__.py
edmunds/localization/translations/providers/translationsserviceprovider.py
edmunds/log/__init__.py
edmunds/log/logmanager.py
edmunds/log/drivers/__init__.py
edmunds/log/drivers/file.py
edmunds/log/drivers/googleappengine.py
edmunds/log/drivers/stream.py
edmunds/log/drivers/syslog.py
edmunds/log/drivers/timedfile.py
edmunds/log/providers/__init__.py
edmunds/log/providers/logserviceprovider.py
edmunds/profiler/__init__.py
edmunds/profiler/profilermanager.py
edmunds/profiler/drivers/__init__.py
edmunds/profiler/drivers/basedriver.py
edmunds/profiler/drivers/blackfireio.py
edmunds/profiler/drivers/callgraph.py
edmunds/profiler/drivers/stream.py
edmunds/profiler/middleware/__init__.py
edmunds/profiler/middleware/profilermiddleware.py
edmunds/profiler/providers/__init__.py
edmunds/profiler/providers/profilerserviceprovider.py
edmunds/session/__init__.py
edmunds/session/sessionmanager.py
edmunds/session/drivers/__init__.py
edmunds/session/drivers/sessioncookie.py
edmunds/session/providers/__init__.py
edmunds/session/providers/sessionserviceprovider.py
edmunds/storage/__init__.py
edmunds/storage/storagemanager.py
edmunds/storage/drivers/__init__.py
edmunds/storage/drivers/basedriver.py
edmunds/storage/drivers/file.py
edmunds/storage/drivers/googlecloudstorage.py
edmunds/storage/providers/__init__.py
edmunds/storage/providers/storageserviceprovider.py
edmunds/support/__init__.py
edmunds/support/helpers.py
edmunds/support/serviceprovider.py
edmunds/validation/__init__.py
edmunds/validation/validator.py
edmunds_fw.egg-info/PKG-INFO
edmunds_fw.egg-info/SOURCES.txt
edmunds_fw.egg-info/dependency_links.txt
edmunds_fw.egg-info/requires.txt
edmunds_fw.egg-info/top_level.txt
setup/.gitignore
setup/LICENSE
setup/README.md
setup/__init__.py
setup/classifiers.txt
setup/easiersetup.py
setup/setup.config.example.ini
setup/setup.example.py
storage/cache/.gitignore
storage/files/.gitignore
storage/localization/location/.gitignore
storage/logs/.gitignore
storage/profs/.gitignore
tests/__init__.py
tests/testcase.py
tests/testglobals.py
tests/cache/__init__.py
tests/cache/drivers/__init__.py
tests/cache/drivers/testfile.py
tests/cache/drivers/testmemcached.py
tests/cache/drivers/testmemcachedingae.py
tests/cache/drivers/testredis.py
tests/cache/providers/__init__.py
tests/cache/providers/testcacheserviceprovider.py
tests/config/__init__.py
tests/config/testconfig.py
tests/console/__init__.py
tests/console/testcommand.py
tests/console/testmanager.py
tests/database/__init__.py
tests/database/testdatabasemanager.py
tests/database/testmodel.py
tests/database/testtable.py
tests/database/drivers/__init__.py
tests/database/drivers/testmysql.py
tests/database/drivers/testprogresql.py
tests/database/drivers/testsqlite.py
tests/database/providers/__init__.py
tests/database/providers/testdatabaseserviceprovider.py
tests/database/providers/testmigrateserviceprovider.py
tests/encoding/__init__.py
tests/encoding/testencoding.py
tests/exceptions/__init__.py
tests/exceptions/testhandler.py
tests/foundation/__init__.py
tests/foundation/syslogserver.py
tests/foundation/testapplicationmiddleware.py
tests/foundation/testdebugmiddleware.py
tests/foundation/concerns/__init__.py
tests/foundation/concerns/testconfig.py
tests/foundation/concerns/testdatabase.py
tests/foundation/concerns/testlocalization.py
tests/foundation/concerns/testmiddleware.py
tests/foundation/concerns/testrequestrouting.py
tests/foundation/concerns/testruntimeenvironment.py
tests/foundation/concerns/testserviceproviders.py
tests/foundation/concerns/testsession.py
tests/foundation/concerns/teststorage.py
tests/foundation/database/__init__.py
tests/foundation/database/testmigratecommand.py
tests/foundation/database/testnomigratecommand.py
tests/foundation/database/testnomigratemanager.py
tests/foundation/patterns/__init__.py
tests/foundation/patterns/testmanager.py
tests/foundation/testing/__init__.py
tests/foundation/testing/testtestcase.py
tests/foundation/testing/testtestcommand.py
tests/gae/__init__.py
tests/gae/gaetestcase.py
tests/gae/testapplication.py
tests/gae/testruntimeenvironment.py
tests/http/__init__.py
tests/http/testcontroller.py
tests/http/testinput.py
tests/http/testrequest.py
tests/http/testrequestmiddleware.py
tests/http/testresponse.py
tests/http/testresponsehelper.py
tests/http/testvisitor.py
tests/http/providers/__init__.py
tests/http/providers/testhttpserviceprovider.py
tests/localization/__init__.py
tests/localization/testlocalizationmanager.py
tests/localization/localization/__init__.py
tests/localization/localization/testlocalizator.py
tests/localization/localization/models/__init__.py
tests/localization/localization/models/testlocalization.py
tests/localization/localization/models/testnumber.py
tests/localization/localization/models/testtime.py
tests/localization/location/__init__.py
tests/localization/location/drivers/__init__.py
tests/localization/location/drivers/testbasedriver.py
tests/localization/location/drivers/testgoogleappengine.py
tests/localization/location/drivers/testmaxmindcitydatabase.py
tests/localization/location/drivers/testmaxmindenterprisedatabase.py
tests/localization/location/drivers/testmaxmindwebservice.py
tests/localization/location/providers/__init__.py
tests/localization/location/providers/testlocationserviceprovider.py
tests/localization/providers/__init__.py
tests/localization/providers/testlocalizationserviceprovider.py
tests/localization/translations/__init__.py
tests/localization/translations/testsentencefiller.py
tests/localization/translations/drivers/__init__.py
tests/localization/translations/drivers/testbasedriver.py
tests/localization/translations/drivers/testconfigtranslator.py
tests/localization/translations/exceptions/__init__.py
tests/localization/translations/exceptions/testsentencefillererror.py
tests/localization/translations/exceptions/testtranslationerror.py
tests/localization/translations/providers/__init__.py
tests/localization/translations/providers/testtranlationsserviceprovider.py
tests/log/__init__.py
tests/log/drivers/__init__.py
tests/log/drivers/testfile.py
tests/log/drivers/testgoogleappengine.py
tests/log/drivers/teststream.py
tests/log/drivers/testsyslog.py
tests/log/drivers/testtimedfile.py
tests/log/providers/__init__.py
tests/log/providers/testlogserviceprovider.py
tests/profiler/__init__.py
tests/profiler/drivers/__init__.py
tests/profiler/drivers/testbasedriver.py
tests/profiler/drivers/testblackfireio.py
tests/profiler/drivers/testcallgraph.py
tests/profiler/drivers/teststream.py
tests/profiler/middleware/__init__.py
tests/profiler/middleware/testprofilermiddleware.py
tests/session/__init__.py
tests/session/drivers/__init__.py
tests/session/drivers/testsessioncookie.py
tests/session/providers/__init__.py
tests/session/providers/testsessionserviceprovider.py
tests/storage/__init__.py
tests/storage/drivers/__init__.py
tests/storage/drivers/testbasedriver.py
tests/storage/drivers/testfile.py
tests/storage/drivers/testgooglecloudstorage.py
tests/storage/providers/__init__.py
tests/storage/providers/teststorageserviceprovider.py
tests/support/__init__.py
tests/support/testhelpers.py
tests/support/testserviceprovider.py
tests/validation/__init__.py
tests/validation/testvalidator.py