| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | remove Python 2/3 from docsdrop-python2 | David Lord | 2020-04-20 | 1 | -22/+12 |
| | | |||||
| * | f-strings everywhere | David Lord | 2020-04-19 | 1 | -6/+5 |
| | | |||||
| * | clarify multiple options | Chris Sullins | 2020-02-23 | 1 | -2/+2 |
| | | |||||
| * | Restore progressbar iterator interface; add test | Stephen Rosen | 2020-02-16 | 1 | -0/+10 |
| | | | | | | | | | | | | | | | | | | | | | - add a test for iterating on a progressbar with next() - implement `next()` in terms of `iter(ProgressBar)`, which is already well-defined - add a note about slow operations with progressbar to narrative docs One of the keys to this working is that `ProgressBar.generator` is consuming an iterable and doesn't store any important state in local variables, making it re-entry safe. I wasn't sure how we can best hint in the public docs that simply walking the bar and stopping one step short of finishing will result in the progress bar "hanging" unfinished. Noting that we work well with things like `time.sleep()` seems like a decent way of advertising positively something which we support *and* guiding anyone going off-book into proper usage. closes #1125 | ||||
| * | new docs links | David Lord | 2018-09-25 | 1 | -2/+2 |
| | | |||||
| * | Fixes documentation issue #334 | Robert Graham | 2018-05-15 | 1 | -1/+2 |
| | | | | | | Docs updated to reflect that ANSI color info isn't parsed from bytearrays in Python 2. | ||||
| * | Merge pull request #883 from jacobtolar/doc-cleanup | Zachery Bir | 2018-05-15 | 1 | -2/+2 |
| |\ | | | | | Clean up Sphinx errors. | ||||
| | * | Clean up Sphinx errors. | Jacob Tolar | 2017-10-28 | 1 | -2/+2 |
| | | | |||||
| * | | Merge pull request #889 from stefreak/master | Dan Sully | 2018-05-14 | 1 | -0/+11 |
| |\ \ | | | | | | | Implement streaming pager. Fixes #409 | ||||
| | * | | Implement streaming pager. Fixes #409 | Steffen Neubauer | 2018-04-04 | 1 | -0/+11 |
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The streaming pager works using generators. You can pass a generator function or object into echo_via_pager: generator expression: ``` click.echo_via_pager(("{}\n".format(i) for i in range(999999))) ``` generator function / expression: ``` def gen(): counter = 0 while True: counter++ yield counter click.echo_via_pager(gen) click.echo_via_pager(gen()) # you can pass both ``` | ||||
| * | | Change pypi.python.org urls to pypi.org | Ahmed Et-tanany | 2018-05-10 | 1 | -1/+1 |
| |/ | | | | | | More details about this change can be found at: https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html | ||||
| * | Fix typos in docs (#623) | Radovan Bast | 2017-01-29 | 1 | -1/+1 |
| | | |||||
| * | fix minor doc typo: "pf" -> "of" | Tal Einat | 2015-12-03 | 1 | -1/+1 |
| | | |||||
| * | Documented wincmd | Armin Ronacher | 2015-11-06 | 1 | -0/+19 |
| | | |||||
| * | Fix some typos | Markus Unterwaditzer | 2015-03-31 | 1 | -1/+1 |
| | | |||||
| * | Added support for manually advancing progressbars. | Armin Ronacher | 2015-03-31 | 1 | -0/+11 |
| | | |||||
| * | Added err to click echo docs | Armin Ronacher | 2014-08-12 | 1 | -0/+7 |
| | | |||||
| * | Added open_file function. | Armin Ronacher | 2014-08-12 | 1 | -0/+25 |
| | | |||||
| * | Capitalized instances of Click (addressing #128) | Kevin Yap | 2014-06-14 | 1 | -6/+6 |
| | | |||||
| * | Documentation improvements | Kevin Yap | 2014-06-01 | 1 | -10/+10 |
| | | |||||
| * | Added bold argument to ANSI colour examples | Kevin Yap | 2014-06-01 | 1 | -3/+3 |
| | | | | | | Implicitly reinforces the idea that styling as well as colouring can be done with the click.style() function. | ||||
| * | Minor documentation fixes | Kevin Yap | 2014-06-01 | 1 | -4/+4 |
| | | |||||
| * | Changed occurrences of "on Python" to "in Python" | Kevin Yap | 2014-05-31 | 1 | -6/+6 |
| | | |||||
| * | Documentation fixes | Kevin Yap | 2014-06-01 | 1 | -41/+41 |
| | | |||||
| * | Docs: minor fixes | Julen Ruiz Aizpuru | 2014-05-31 | 1 | -1/+1 |
| | | |||||
| * | Added click.pause | Armin Ronacher | 2014-05-31 | 1 | -0/+21 |
| | | |||||
| * | More documentation fixes | Kevin Yap | 2014-05-30 | 1 | -23/+23 |
| | | |||||
| * | Merge pull request #104 from julen/doc-fixes | Armin Ronacher | 2014-05-30 | 1 | -1/+1 |
| |\ | | | | | Docs: several fixes | ||||
| | * | Docs: several fixes | Julen Ruiz Aizpuru | 2014-05-29 | 1 | -1/+1 |
| | | | |||||
| * | | open -> launch | Armin Ronacher | 2014-05-30 | 1 | -2/+2 |
| |/ | |||||
| * | Moved pager support in the docs | Armin Ronacher | 2014-05-30 | 1 | -0/+17 |
| | | |||||
| * | Added notes on keyboard interrupts | Armin Ronacher | 2014-05-30 | 1 | -0/+7 |
| | | |||||
| * | Added getchar() | Armin Ronacher | 2014-05-30 | 1 | -0/+32 |
| | | |||||
| * | Added click.launch | Armin Ronacher | 2014-05-28 | 1 | -0/+17 |
| | | |||||
| * | Added an edit function. | Armin Ronacher | 2014-05-28 | 1 | -0/+30 |
| | | |||||
| * | Added secho | Armin Ronacher | 2014-05-27 | 1 | -0/+7 |
| | | |||||
| * | Added style helpers and added deeper ansi color support. Colorama now optional. | Armin Ronacher | 2014-05-27 | 1 | -11/+10 |
| | | |||||
| * | print -> click.echo | Armin Ronacher | 2014-05-26 | 1 | -1/+1 |
| | | |||||
| * | Added colorama example | Armin Ronacher | 2014-05-26 | 1 | -0/+7 |
| | | |||||
| * | Added support for screen clearing. | Armin Ronacher | 2014-05-26 | 1 | -0/+15 |
| | | |||||
| * | Docs: minor fixes | Julen Ruiz Aizpuru | 2014-05-26 | 1 | -2/+2 |
| | | |||||
| * | Docs: progressbar fixes | Julen Ruiz Aizpuru | 2014-05-26 | 1 | -1/+1 |
| | | |||||
| * | Cross link for ansi colors. | Armin Ronacher | 2014-05-26 | 1 | -0/+2 |
| | | |||||
| * | Added note on colorama installation. | Armin Ronacher | 2014-05-26 | 1 | -0/+9 |
| | | |||||
| * | Added colorama support into the echo function. | Armin Ronacher | 2014-05-26 | 1 | -0/+23 |
| | | |||||
| * | Documented new functions in utils | Armin Ronacher | 2014-05-26 | 1 | -0/+76 |
| | | |||||
| * | Docs: fixes | Julen Ruiz Aizpuru | 2014-05-22 | 1 | -4/+4 |
| | | |||||
| * | Added filename format function | Armin Ronacher | 2014-05-22 | 1 | -0/+18 |
| | | |||||
| * | Merge pull request #80 from dirn/patch-1 | Armin Ronacher | 2014-05-13 | 1 | -2/+2 |
| |\ | | | | | Fix typo in docs | ||||
| | * | Fix typo in docs | Andy Dirnberger | 2014-05-12 | 1 | -2/+2 |
| | | | | | | | This typo is in a section heading. It will change the anchor name for the section. | ||||
