Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Clint is a module filled with a set of awesome tools for developing commandline applications.
.. image:: https://raw.github.com/kennethreitz/clint/master/misc/clint.jpeg
C ommand L ine IN terface T ools .
Clint is awesome. Crazy awesome. It supports colors, but detects if the session is a TTY, so doesn't render the colors if you're piping stuff around. Automagically.
Awesome nest-able indentation context manager. Example: (with indent(4): puts('indented text')
). It supports custom email-style quotes. Of course, it supports color too, if and when needed.
It has an awesome Column printer with optional auto-expanding columns. It detects how wide your current console is and adjusts accordingly. It wraps your words properly to fit the column size. With or without colors mixed in. All with a single function call.
The world's easiest to use implicit argument system w/ chaining methods for filtering. Seriously.
Run the various executables in examples_ to get a good feel for what Clint offers.
.. _examples: https://github.com/kennethreitz/clint/tree/master/examples
You'll never want to not use it.
Are you sure? [Yn]
I want to indent my console text. ::
>>> from clint.textui import puts, indent
>>> puts('not indented text')
>>> with indent(4):
>>> puts('indented text')
not indented text
indented text
I want to quote my console text (like email). ::
>>> puts('not indented text')
>>> with indent(4, quote=' >'):
>>> puts('quoted text')
>>> puts('pretty cool, eh?')
not indented text
> quoted text
> pretty cool, eh?
I want to color my console text. ::
>>> from clint.textui import colored, puts
>>> puts(colored.red('red text'))
red text
# It's red in Windows, OSX, and Linux alike.
I want to get data piped to stdin. ::
>>> clint.piped_in()
# if no data was piped in, piped_in returns None
I want to get the first commandline argument passed in. ::
>>> from clint import arguments
>>> args = arguments.Args()
>>> args.get(0)
# if no argument was passed, get returns None
I want to store a configuration file. ::
>>> from clint import resources
>>> resources.init('Company', 'AppName')
>>> resources.user.write('config.ini', file_contents)
# OSX: '/Users/appuser/Library/Application Support/AppName/config.ini'
# Windows: 'C:\\Users\\appuser\\AppData\\Local\\Company\\AppName\\config.ini'
# Linux: '/home/appuser/.config/appname/config.ini'
I want to force color output even if stdout is not a TTY:
$ export CLINT_FORCE_COLOR=1
I want to ask for input. ::
>>> from clint.textui import prompt, validators
>>> path = prompt.query('Installation Path', default='/usr/local/bin/', validators=[validators.PathValidator()])
To install clint, simply: ::
$ pip install clint
Or, if you absolutely must: ::
$ easy_install clint
But, you really shouldn't do that.
ISC License. ::
Copyright (c) 2011, Kenneth Reitz <me@kennethreitz.com>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
If you'd like to contribute, simply fork the repository
, commit your changes
to the master branch (or branch off of it), and send a pull request. Make
sure you add yourself to AUTHORS.
.. _the repository
: http://github.com/kennethreitz/clint
.. _AUTHORS: http://github.com/kennethreitz/clint/blob/master/AUTHORS
0.5.1 +++++
0.5.0 +++++
0.4.1 +++++
0.4.0 +++++
examples/prompt.py
0.3.7 +++++
0.3.6 +++++
0.3.5 +++++
0.3.4 +++++
0.3.3 +++++
0.3.2 +++++
0.3.1 +++++
0.3.0 +++++
0.2.4 +++++
0.2.3 +++++
0.2.2 +++++
0.2.1 (2011-03-24) ++++++++++++++++++
0.2.0 (2011-03-23) ++++++++++++++++++
0.1.2 (2011-03-21) ++++++++++++++++++
0.1.1 (2011-03-20) ++++++++++++++++++
0.1.0 (2011-03-20) ++++++++++++++++++
FAQs
Python Command Line Interface Tools
We found that clint demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.