├── .gitignore ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── intro.rst ├── modules.rst ├── whizbang.http.orm.rst ├── whizbang.http.rst ├── whizbang.http.views.rst ├── whizbang.kvs.rst ├── whizbang.queue.config.rst ├── whizbang.queue.rst ├── whizbang.queue.util.rst └── whizbang.rst ├── examples └── twooter │ ├── db.sqlite3 │ ├── models.py │ ├── requirements.txt │ ├── resources │ └── twoot.js │ ├── runserver.py │ └── sockets.py ├── images ├── home.png ├── resource.png └── resources.png ├── omega ├── __init__.py ├── http │ ├── __init__.py │ ├── cache.py │ ├── core.py │ ├── orm │ │ ├── __init__.py │ │ └── model.py │ ├── utils.py │ └── views │ │ ├── __init__.py │ │ ├── generated.py │ │ ├── nosql.py │ │ ├── orm.py │ │ ├── static.py │ │ ├── template.py │ │ └── templates │ │ ├── base.html │ │ ├── index.html │ │ ├── resource.html │ │ └── resources.html ├── kvs │ ├── __init__.py │ ├── client.py │ ├── server.py │ ├── test │ │ └── app.py │ └── tests │ │ └── test_kvs.py ├── log │ └── README.md ├── queue │ ├── README.md │ ├── __init__.py │ ├── config │ │ ├── __init__.py │ │ └── settings.py │ ├── message.py │ ├── monitor.py │ ├── queue.py │ ├── serialization.py │ ├── test │ │ ├── app.py │ │ └── config │ │ │ ├── __init__.py │ │ │ └── settings.py │ ├── util │ │ ├── __init__.py │ │ └── xrange_helper.py │ └── worker.py ├── search │ └── README.md ├── settings │ └── README.md └── stat │ └── README.md ├── requirements.txt └── tests ├── config ├── __init__.py └── settings.py └── test_queue.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .*sw[op] 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/whizbang.http.orm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/whizbang.http.orm.rst -------------------------------------------------------------------------------- /docs/whizbang.http.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/whizbang.http.rst -------------------------------------------------------------------------------- /docs/whizbang.http.views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/whizbang.http.views.rst -------------------------------------------------------------------------------- /docs/whizbang.kvs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/whizbang.kvs.rst -------------------------------------------------------------------------------- /docs/whizbang.queue.config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/whizbang.queue.config.rst -------------------------------------------------------------------------------- /docs/whizbang.queue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/whizbang.queue.rst -------------------------------------------------------------------------------- /docs/whizbang.queue.util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/whizbang.queue.util.rst -------------------------------------------------------------------------------- /docs/whizbang.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/docs/whizbang.rst -------------------------------------------------------------------------------- /examples/twooter/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/examples/twooter/db.sqlite3 -------------------------------------------------------------------------------- /examples/twooter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/examples/twooter/models.py -------------------------------------------------------------------------------- /examples/twooter/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/examples/twooter/requirements.txt -------------------------------------------------------------------------------- /examples/twooter/resources/twoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/examples/twooter/resources/twoot.js -------------------------------------------------------------------------------- /examples/twooter/runserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/examples/twooter/runserver.py -------------------------------------------------------------------------------- /examples/twooter/sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/examples/twooter/sockets.py -------------------------------------------------------------------------------- /images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/images/home.png -------------------------------------------------------------------------------- /images/resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/images/resource.png -------------------------------------------------------------------------------- /images/resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/images/resources.png -------------------------------------------------------------------------------- /omega/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omega/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omega/http/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/cache.py -------------------------------------------------------------------------------- /omega/http/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/core.py -------------------------------------------------------------------------------- /omega/http/orm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/orm/__init__.py -------------------------------------------------------------------------------- /omega/http/orm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/orm/model.py -------------------------------------------------------------------------------- /omega/http/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/utils.py -------------------------------------------------------------------------------- /omega/http/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omega/http/views/generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/views/generated.py -------------------------------------------------------------------------------- /omega/http/views/nosql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/views/nosql.py -------------------------------------------------------------------------------- /omega/http/views/orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/views/orm.py -------------------------------------------------------------------------------- /omega/http/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/views/static.py -------------------------------------------------------------------------------- /omega/http/views/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/views/template.py -------------------------------------------------------------------------------- /omega/http/views/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/views/templates/base.html -------------------------------------------------------------------------------- /omega/http/views/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/views/templates/index.html -------------------------------------------------------------------------------- /omega/http/views/templates/resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/views/templates/resource.html -------------------------------------------------------------------------------- /omega/http/views/templates/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/http/views/templates/resources.html -------------------------------------------------------------------------------- /omega/kvs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omega/kvs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/kvs/client.py -------------------------------------------------------------------------------- /omega/kvs/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/kvs/server.py -------------------------------------------------------------------------------- /omega/kvs/test/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/kvs/test/app.py -------------------------------------------------------------------------------- /omega/kvs/tests/test_kvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/kvs/tests/test_kvs.py -------------------------------------------------------------------------------- /omega/log/README.md: -------------------------------------------------------------------------------- 1 | Placeholder for `log` application 2 | -------------------------------------------------------------------------------- /omega/queue/README.md: -------------------------------------------------------------------------------- 1 | Placeholder for 'queue' application 2 | -------------------------------------------------------------------------------- /omega/queue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omega/queue/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omega/queue/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/queue/config/settings.py -------------------------------------------------------------------------------- /omega/queue/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/queue/message.py -------------------------------------------------------------------------------- /omega/queue/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/queue/monitor.py -------------------------------------------------------------------------------- /omega/queue/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/queue/queue.py -------------------------------------------------------------------------------- /omega/queue/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/queue/serialization.py -------------------------------------------------------------------------------- /omega/queue/test/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/queue/test/app.py -------------------------------------------------------------------------------- /omega/queue/test/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omega/queue/test/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/queue/test/config/settings.py -------------------------------------------------------------------------------- /omega/queue/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/queue/util/__init__.py -------------------------------------------------------------------------------- /omega/queue/util/xrange_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/queue/util/xrange_helper.py -------------------------------------------------------------------------------- /omega/queue/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/omega/queue/worker.py -------------------------------------------------------------------------------- /omega/search/README.md: -------------------------------------------------------------------------------- 1 | Placeholder for `search` application 2 | -------------------------------------------------------------------------------- /omega/settings/README.md: -------------------------------------------------------------------------------- 1 | Placeholder for `settings` application 2 | -------------------------------------------------------------------------------- /omega/stat/README.md: -------------------------------------------------------------------------------- 1 | Placeholder for `stat` application 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/tests/config/settings.py -------------------------------------------------------------------------------- /tests/test_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffknupp/omega/HEAD/tests/test_queue.py --------------------------------------------------------------------------------