alex-kalanis/kw_input

Inputs put in same way - basic interfaces

v3.0.0 2024-03-30 22:53 UTC

This package is auto-updated.

Last update: 2024-03-30 23:05:01 UTC


README

Build Status Scrutinizer Code Quality Latest Stable Version Minimum PHP Version Downloads License Code Coverage

Contains simplification of inputs from the whole bunch of sources. Allow you use either get and cli or server and env params as same source.

This is the mixed package - contains sever-side implementation in Python and PHP.

PHP Installation

composer.phar require alex-kalanis/kw_input

(Refer to Composer Documentation if you are not familiar with composer)

PHP Usage

1.) Use your autoloader (if not already done via Composer autoloader)

2.) Connect the "kalanis\kw_input" into your app. When it came necessary you can extends every library to comply your use-case; mainly your init ad reading.

Python Installation

into your "setup.py":

    install_requires=[
        'kw_input',
    ]

Python Usage

1.) Connect the "kw_input\inputs" into your app. When it came necessary you can extends every library to comply your use-case; mainly your storage and processing.