You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Vincent Driessen b5fbc3992b Restructure new CLI modules.
A few things have changed.  First of all, there is no separate copy of
the argparse-based `rqinfo` anymore.  It now fully utilizes the new
Click subcommand.  In other words: `rqinfo` and `rq info` both invoke
the same function under the hood.

In order to support this, the main command group now does NOT take
a `url` option and initializes the connection.  Besides supporting this
alias pattern, this change was useful for two more reasons: (1) it
allows us to add subcommands that don't need the Redis server running in
the future, and (2) it makes the `--url` option an option underneath
each subcommand.  This avoids command invocations that look like this:

    $ rq --url <url> info --more --flags

And instead allows us to pass the URL to each subcommand where it's
deemed necessary:

    $ rq info --url <url> --more --flags

Which is much friendlier to use/remember.
10 years ago
..
cli Restructure new CLI modules. 10 years ago
compat kwargs must be strings, unicode fails with "keywords must be strings" 11 years ago
contrib Raise warning when using async Sentry transport. 11 years ago
scripts Restructure new CLI modules. 10 years ago
__init__.py Enable the most modern Python syntax. 11 years ago
connections.py Enable the most modern Python syntax. 11 years ago
decorators.py Easy refactoring on decorators.py 11 years ago
dummy.py Enable the most modern Python syntax. 11 years ago
exceptions.py Enable the most modern Python syntax. 11 years ago
job.py Merge pull request #390 from selwin/pipeline-dependency-registration 11 years ago
local.py Fix typo in Doc string. 11 years ago
logutils.py Fixed default logging level in setup_loghandlers. 11 years ago
queue.py Fix various flake8 complaints. 10 years ago
timeouts.py PEP8ify. 11 years ago
utils.py Remove unused function 'gettersize' 10 years ago
version.py Start release 0.4.6. 11 years ago
worker.py Don't pass "args" into logging call. 10 years ago