Metadata-Version: 2.1
Name: rendre
Version: 0.0.1
Summary: Utilities
Home-page: https://github.com/claudioperez/rendre
Author: Claudio Perez
Author-email: claudio_perez@berkeley.edu
License: UNKNOWN
Description: # Rendre
        
        A Git-based CMS for parsing and emitting ATOM feeds.
        
        ## Options
        
        <dl>
        <dt>-v/--verbose</dt>
        <dd>Generate verbose console logging</dd>
        <dt>-q/--quiet</dt>
        <dd>Suppress all console logging</dd>
        <dt>-i/--include-item &lt;item-selector&gt;</dt>
        <dd>Include items that validate against <code>&lt;item-selector&gt;::=&lt;pointer&gt;&lt;separator&gt;&lt;pattern&gt;</code>. </dd>
        </dl>
        
        ### \<pattern>
        
        Patterns are currently handled as globs, supporting both `*` and `?` expansion.
        
        ### \<pointer>
        
        Pointers which begin with a `/` character are treated as JSON pointers.
        
        The following shorthand pointers are defined for `%`-prefixed pointers:
        
        ```
        %i -> item['id']
        %t -> /id | item['id']
        %c -> /categories | item['categories']
        ```
        
        ### \<item-selector>
        
        An item selector is a combination of a pointer and a pattern, separated by either `=` or `:`. 
        
        If no unescaped separator is present, the pointer is implicitly taken as `%i`, and the full string is processed as the pattern.
        
        
        
        ## Commands
        
        ### `list`
        
        ### `gallery`
        
        ## Examples
        
        ```
        >rendre list -i "%./api/cmd/usage:"
        
        ```
        
        
        ```
        > rendre list -- %i %t %c/workflow-module %./links/repository[24:] | column -t -s ,
        ...
        bknd-0035   ExtractPGA              performSIMULATION        SimCenter/SimCenterBackendApplications
        bknd-0036   Dakota-FEM              performUQ                SimCenter/SimCenterBackendApplications
        bknd-0037   Dakota-UQ               performUQ                SimCenter/SimCenterBackendApplications
        bknd-0038   Dakota-UQ1              performUQ                SimCenter/SimCenterBackendApplications
        bknd-0039   Dakota-UQ               performUQ                SimCenter/quoFEM
        bknd-0040   DakotaFEM               performUQ                SimCenter/quoFEM
        bknd-0041   SimCenterUQ-UQ          performUQ                SimCenter/quoFEM
        bknd-0042   Other-UQ                performUQ                SimCenter/quoFEM
        bknd-0043   UCSD-UQ                 performUQ                SimCenter/quoFEM
        bknd-0044   pelicun                 performDL                SimCenter/SimCenterBackendApplications
        bknd-0045   NearestNeighborEvents   performRegionalMapping   SimCenter/SimCenterBackendApplications
        bknd-0046   OpenSees                performSIM               SimCenter/quoFEM
        bknd-0047   OpenSeesPy              performSIM               SimCenter/quoFEM
        ...
        ```
        
        ## Sphinx Directive
        
        ```rst
        .. rendre:: <command>
           :<cli-options>:
        
           :<cmd-options>:
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
