Metadata-Version: 2.1
Name: fyoo
Version: 0.1.0a2
Summary: UNKNOWN
Home-page: UNKNOWN
License: UNKNOWN
Description: Fyoo
        ====
        
        |PyPI Package|
        |Documentation| 
        |Git tag|
        |Test status|
        |Code coverage|
        
        Fyoo is a simple jinja2-based command-argument-templatizer CLI utility.
        Templatizing can be done at runtime for consistent argument tweaks.
        
        Basic Usage
        -----------
        
        Fyoo runs a command with templatized arguments succeeding `--`. Context
        can be provided by flags or there are a few baked-in functions.
        
        Example inline query:
        
        .. code-block:: bash
        
           # Create a sqlite3 db for this example
           sqlite3 example.db 'create table if not exists user (username string, created date default current_date);insert into user(username) values ("cooluser")'
           
           # run a templatized/dynamic query to csv output
           fyoo --fyoo-set table=user --fyoo-set db=example.db -- \
             sqlite3 '{{ db }}' \
              'select * from {{ table }} where date(created) = "{{ dt() }}"' \
              -csv -header
           # username,created
           # cooluser,2020-06-21
        
        If SQL queries are to be re-used, perhaps the query itself comes from a template file.
        
        .. code-block:: bash
        
           echo 'select count(*)
           from {{ table }}' > count.sql
           
           fyoo '--fyoo-context={"db": "example.db", "table": "user"}' -- \
             sqlite3 '{{ db }}' "$(cat count.sql)"
           # 1 (assuming same example from before)
        
        
        .. links
        
        .. |PyPI Package| image:: https://img.shields.io/pypi/v/fyoo.svg
           :target: https://pypi.python.org/pypi/fyoo/
        .. |Documentation| image:: https://readthedocs.org/projects/fyoo/badge/?version=latest
            :target: https://fyoo.readthedocs.io/en/latest/?badge=latest
            :alt: Documentation Status
        .. |Git tag| image:: https://img.shields.io/github/tag/brian-bk/fyoo.svg
           :target: https://github.com/brian-bk/fyoo/commit/
        .. |Test status| image:: https://circleci.com/gh/brian-bk/fyoo/tree/master.svg?style=svg
            :target: https://circleci.com/gh/brian-bk/fyoo/tree/master
        .. |Code coverage| image:: https://codecov.io/gh/brian-bk/fyoo/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/brian-bk/fyoo
        .. _Pipenv: https://pipenv-fork.readthedocs.io/
        
Platform: UNKNOWN
Requires-Python: >=3.7
Provides-Extra: test
Provides-Extra: dev
Provides-Extra: all
