معرفی شرکت ها


backquotes-0.1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

shell command invocation with backquotes, like Perl, Ruby.
ویژگی مقدار
سیستم عامل -
نام فایل backquotes-0.1.0
نام backquotes
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Ryosuke Ito
ایمیل نویسنده rito.0305@gmail.com
آدرس صفحه اصلی https://github.com/manicmaniac/backquotes
آدرس اینترنتی https://pypi.org/project/backquotes/
مجوز -
backquotes ========== .. image:: https://img.shields.io/github/checks-status/manicmaniac/backquotes/master.svg :target: https://github.com/manicmaniac/backquotes/actions?query=branch%3Amaster .. image:: https://img.shields.io/codeclimate/maintainability/manicmaniac/backquotes.svg :target: https://codeclimate.com/github/manicmaniac/backquotes .. image:: https://img.shields.io/codeclimate/coverage/manicmaniac/backquotes.svg :target: https://codeclimate.com/github/manicmaniac/backquotes .. image:: https://img.shields.io/pypi/v/backquotes.svg :target: https://pypi.python.org/pypi/backquotes/ .. image:: https://img.shields.io/pypi/pyversions/backquotes.svg :target: https://pypi.python.org/pypi/backquotes/ Introduction ------------ ``backquotes`` brings (Perl / Ruby)'s shell invocation syntax to Python. Since ``backquotes`` is an experimental module, using it in a serious program is not recommended. Syntax ------ Firstly, do not forget to import ``backquotes`` module. .. code:: python import backquotes Basic ----- You can use similar syntax to Perl / Ruby. .. code:: python import backquotes print(`date`) Pipes and redirections ---------------------- Yes, you can use pipes, redirections too. .. code:: python import backquotes print(`ls | tr [a-z] [A-Z]`.splitlines()) Local variables substitution ---------------------------- To bring local variables in Python code to shell command, use Perl-like variables substitution. .. code:: python import backquotes spam = 'spam' print(`echo $spam`) ``$$`` is replaced with a literal ``$``. .. code:: python import backquotes print(`echo $$PATH`) Usage ----- Runtime-preprocessing ^^^^^^^^^^^^^^^^^^^^^ You can use runtime-preprocessing only in Python 2. This works transparently whenever you import ``backquotes``. .. warning:: Python 3 raises `SyntaxError` on a backquote character before evaluate the first line. So you CANNOT use runtime-preprocessing. .. code:: python #!/usr/bin/env python import backquotes print(`date`) Save the above code as ``date.py``, and run it as usual. .. code:: sh python date.py You will see the result of ``date`` command. Runtime-preprocessing sometimes causes ``SyntaxError`` before preprocessing starts, especially with complex commands invocation. You can avoid this error by using single-quotes just inside the backquotes. .. code:: python print(`'for file in *; do echo $file; done'`) Execute `backquotes` module ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Run ``python`` with ``-m backquotes`` option to invoke ``backquotes`` as a script. ``backquotes`` compiles a plain Python code and execute it. .. note:: This works both in Python 2 / 3. .. code:: sh python -m backquotes date.py You can pass arguments to the script like this. .. code:: sh python -m backquotes date.py 2015 10 31 Preprocess Python code ^^^^^^^^^^^^^^^^^^^^^^ Run ``python`` with ``-m backquotes -E`` option to only preprocess the given source file and print the result to stdout. .. warning:: Preprocessed python code is almost the same as the original code semantically, but whitespaces may be moved by the preprocessor. .. note:: This works both in Python 2 / 3. .. code:: sh mkdir dist python -m backquotes -E date.py > dist/date.py python dist/date.py Restrictions ------------ - ``backquotes`` does not work in Python REPL. Importing it in REPL causes warnings. - A module which imports ``backquotes`` does not work when it is imported by another module. Install ------- .. code:: sh pip install backquotes or .. code:: sh git clone https://github.com/manicmaniac/backquotes.git cd backquotes python setup.py install or .. code:: sh wget https://raw.githubusercontent.com/manicmaniac/backquotes/master/backquotes.py


نحوه نصب


نصب پکیج whl backquotes-0.1.0:

    pip install backquotes-0.1.0.whl


نصب پکیج tar.gz backquotes-0.1.0:

    pip install backquotes-0.1.0.tar.gz