Commit Graph

267 Commits

Author SHA1 Message Date
Kenneth Reitz e172a1e282 v0.3.2 v0.3.2 2013-12-02 22:16:40 -05:00
Kenneth Reitz cab8004284 v0.3.1 2013-12-02 22:15:42 -05:00
Kenneth Reitz c76cc35289 support always_color 2013-12-02 22:14:57 -05:00
Kenneth Reitz 8e86e4c1fa Merge pull request #92 from joshmoore/patch-1
Point README.rst to master/examples rather than develop
2013-08-06 08:36:50 -07:00
Josh Moore 858db011d8 Point README.rst to master/examples rather than develop 2013-08-06 10:24:14 +02:00
Kenneth Reitz c111ba5d92 Update README.rst 2013-07-15 09:04:42 -04:00
Kenneth Reitz 9e43717921 Merge pull request #88 from ewa/develop
Added optional "every" argument to progress.{bar,dots,mill}
2013-06-12 23:36:28 -07:00
Kenneth Reitz 8e351ac4d0 Merge pull request #82 from techniq/patch-1
Fix test name (TabLib->Clint)
2013-04-13 20:44:12 -07:00
Eric W. Anderson cb8bcee077 And, add self to AUTHORS 2013-03-01 00:21:22 -05:00
Eric W. Anderson 3df99a6a2b Added "every" option to dots and mill as well 2013-03-01 00:19:10 -05:00
Eric W. Anderson 5b37fb544d Add "every" option to progress.bar:
Only redraw bar every "every" steps.  Useful for very long sequences of small
operations.
2013-03-01 00:05:21 -05:00
Eric W. Anderson 099a506344 Expliclity refer to pwd for arugments package 2013-02-28 23:59:31 -05:00
Kenneth Reitz d7fdbe85a9 Merge pull request #84 from sghill/develop
Fix 404 to AUTHORS in README
2013-01-24 20:00:08 -08:00
Steve Hill 7b2130e582 Fix 404 to AUTHORS in README 2013-01-24 19:50:08 -08:00
Sean Lynch f884841082 Fix test name (TabLib->Clint) 2013-01-20 23:45:31 -05:00
Kenneth Reitz 112ea81b51 Merge pull request #73 from dmedvinsky/bug/add-textui-streams-to-all
Add textui streams to __all__
2012-11-15 18:42:58 -08:00
Kenneth Reitz 399fa2bb24 Merge pull request #74 from techtonik/patch-1
Fix image
2012-11-15 17:57:43 -08:00
anatoly techtonik ab2f37219a Fix image 2012-11-07 15:06:46 +03:00
Dmitry Medvinsky 464849e575 Add textui streams to __all__
So that I could write

    from clint import textui as ui
    ui.puts(ui.colored.red('fatal error'), stream=ui.STDERR)
2012-09-24 18:59:52 +04:00
Kenneth Reitz acdddbabea Merge pull request #42 from takluyver/colorama-init2
Initialise colorama for textui on Windows.
2012-09-24 07:23:17 -07:00
Kenneth Reitz 1a11a670e7 Merge pull request #57 from aerenchyma/fix-issue56
Fix - issue56
2012-09-24 07:19:32 -07:00
Kenneth Reitz 1dc521de1a Merge pull request #63 from dendright/develop
Only write progress bars to terminal by default
2012-09-24 07:18:52 -07:00
Kenneth Reitz 1e3888e530 Merge pull request #70 from gekitsuu/develop
changed import args to import arguments
2012-09-10 16:26:18 -07:00
Adam Glenn 2c8561a492 changed import args to import arguments 2012-09-10 12:52:51 -04:00
Kenneth Reitz 04f0cdd646 Merge pull request #69 from brandly/develop
Fix minor spelling mistake
2012-09-09 14:14:24 -07:00
Matthew Brandly 0bd5026d21 Fix minor spelling mistake 2012-09-09 14:54:52 -04:00
jczetta b69ceb18d2 redefined __getattr__ so all str methods work
All str methods work for ColoredStrings with expected functionality, excepting .join(). Retained some other method definitions in order to retain expected functionality. Added tests for ColoredString.
2012-08-25 12:43:29 -04:00
Jack Riches e1bdaa4d0d More robust checking for if output is a tty 2012-08-14 09:47:34 +01:00
Jack Riches 8103032de8 Only write progress bars to terminal by default
This removes unwanted progress bar output when piping to another command
or file. Progress bars may be explicitly shown in this case with
progess.bar(iterable, hide=False)
2012-08-08 15:01:06 +01:00
Kenneth Reitz ab401e7af2 Merge pull request #61 from barberj/args_integration
Args integration
2012-08-01 09:32:49 -07:00
barberj fc841b0a61 consistency is key 2012-08-01 09:15:58 -04:00
barberj b591c3edc2 forgot to include args dependency 2012-08-01 08:49:48 -04:00
barberj 70c0680b8c credit 2012-08-01 08:47:29 -04:00
barberj e7db8c7e37 Updated to use arguments module.
Removed py25 support and tox testing since try/except statements were >=2.5.
Try setup import from setuptools so python setup.py develop is available.
2012-08-01 08:42:34 -04:00
Kenneth Reitz 944af48ba5 Merge pull request #55 from donspaulding/develop
Added an expected_size parameter to progress.bar and progress.mill.
2012-06-14 10:30:43 -07:00
Don Spaulding a1808173d9 Added an expected_size parameter to progress.bar and progress.mill.
Some objects you might want to show progress on while iterating over
do not support calling len().  In these cases you can now pass
`expected_size` in to the progress.bar and progress.mill functions
to avoid the len() call on the iterable.
2012-06-14 12:23:05 -05:00
Kenneth Reitz c2aa315a58 Merge pull request #53 from johtso/develop
Make prompt module accessible
2012-06-14 10:07:15 -07:00
Johannes 3e03a9ceb9 Make prompt module accessible 2012-05-14 12:43:19 +02:00
Kenneth Reitz 02016e8b06 Merge pull request #38 from Lothiraldan/develop
Try a reimplementation of clint.textui.core
2012-05-09 16:28:42 -07:00
Kenneth Reitz a7e2d21273 Merge pull request #51 from kracekumar/develop
Develop
2012-05-09 11:19:39 -07:00
kracekumar 911a84406e added an example get_each_args.py 2012-05-09 01:06:03 +05:30
kracekumar afd410125d added an example get_each_args.py 2012-05-09 01:05:32 +05:30
Kenneth Reitz e2a169ab9c Merge pull request #44 from mjs2600/develop
Fixed a typo in README.rst
2012-04-22 17:55:01 -07:00
Kenneth Reitz cfad07a774 Merge pull request #49 from gbrindisi/prompt
Added basic yes/no prompt module
2012-04-06 10:05:22 -07:00
Gianluca Brindisi 48d9c16f0f Added basic yes/no prompt module 2012-04-06 15:01:14 +02:00
Michael Simpson 86b196811f Update README.rst 2012-02-23 14:26:05 -05:00
Thomas Kluyver d479ea3a3c Initialise colorama for textui on Windows.
Closes gh-39
2012-02-23 10:08:55 +00:00
Kenneth Reitz fc873deb3b Merge pull request #40 from verigak/develop
Allow multiple occurences of a flag in grouped
2012-02-14 14:04:00 -08:00
Giorgos Verigakis d4cb4e8c01 Allow multiple occurences of a flag in grouped 2012-02-14 23:57:45 +02:00
FELD Boris 7c48045b57 Update clint.textui.core's docstrings 2012-02-12 17:46:33 +01:00