Giter VIP home page Giter VIP logo

python-tinyscript's Introduction

TinyScript Tweet

Make a CLI tool with very few lines of code.

PyPi Read The Docs Build Status Coverage Status Python Versions Known Vulnerabilities License

This library is aimed to provide useful features and helpers in order to shorten the number of required lines of code for writing simple and nice-looking command-line interface tools. It is based on argparse and is considered a development kit, on the contrary of popular frameworks like cement, click or docopt, as it is not aimed to reinvent the wheel in yet another paradigm.

pip install tinyscript

💡 Philosophy

This library is built with the DRY (Don't Repeat Yourself) and KISS (Keep It Stupid Simple) philosophies in mind ; the whole machinery of Tinyscript holds in its star import (from tinyscript import *) and its initialization (with the initialize function).

It is aimed to shorten required code by setting a few things while loaded:

  • a proxy parser (coming from the star import) collects arguments definitions and formats help at initialization, preventing from rewriting the whole bunch of code needed to declare an ArgumentParser (and define its epilog, and so forth)
  • a main (colored) logger is preconfigured and can be tuned through two constants so that we don't care for writing a bunch of code needed to configure logging
  • preimports (while a bit anti-Pythonic, we confess) of common libraries also reduces the quantity of code required
  • among these, some modules are enhanced with new functions and classes that are not natively foreseen

Leveraging this allows to create very short scripts with only the real code that matters, reducing the code to be rewritten to create efficient, nice-looking and sophisticated CLI tools.

Note that, while star imports should be avoided according to Python's style guide (see PEP8), it is deliberately extensively used and covering a huge scope in order to shorten code length. This "anti-pattern" pays off after creating a few tools, when we can realize it shortens parts of the code that are often repeated from a tool to another (e.g. for shaping tool's help message).

😎 Usage

It is designed to be as simple and straightforward to use as possible. In order to learn and use it, you only need your browser (for consulting the documentation), a text editor and a good Python Interpreter (e.g. IDLE) for using auto-completion or an IDE like PyCharm to get helpers suggested.

The point is that you will use:

  • features, enabled by setting flags in the "master" function called ìnitialize
  • helpers, grouped under the "master" submodule called ts
  • reporting objects from the global scope

Please see the example tools herebelow for examples of usage of features, helpers and reporting.

⏩ Quick Start

Create from template

Edit source

Run your tool

🔍 Example tools

Security

Utils

👏 Supporters

Stargazers repo roster for @dhondta/python-tinyscript

Forkers repo roster for @dhondta/python-tinyscript

Back to top

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.