Metadata-Version: 2.1
Name: othertools
Version: 1.0.4
Summary: Other Tools
Home-page: https://github.com/zeuscronos/python-other-tools
Author: Zeus Cronos
Author-email: noreply@notavailable.com
License: Apache 2.0
Description: # Other Tools for Python
        
        # To Publish
        
        ```
        $ python setup.py sdist
        $ twine upload dist/*
        ```
        
        # Installation
        
        ```
        $ pip install othertools
        ```
        
        ## Usage
        
        ```python
        from othertools.path import chdiranchor
        
        chdiranchor("environment.yaml", "src/.+")
        ```
        
        # Examples
        
        ## Example 1
        
        Before:
        ```
        .
        ├── documents
        └── projects
            └── python
                └── hello-world
                    ├── environment.yaml
                    └── src ### CURRENT DIRECTORY] ###
                        └── root.package
                            └── main.py
        ```
        
        ```python
        chdiranchor("environment.yaml", "src/.+")
        ```
        
        After:
        ```
        .
        ├── documents
        └── projects
            └── python
                └── hello-world
                    ├── environment.yaml
                    └── src
                        └── root.package ### CURRENT DIRECTORY] ###
                            └── main.py
        ```
        
        ## Example 2
        
        Before:
        ```
        .
        ├── documents
        └── projects
            └── python
                └── hello-world ### CURRENT DIRECTORY] ###
                    ├── environment.yaml
                    └── src
                        └── root.package
                            └── main.py
        ```
        
        ```python
        chdiranchor("environment.yaml", "src/.+")
        ```
        
        After:
        ```
        .
        ├── documents
        └── projects
            └── python
                └── hello-world
                    ├── environment.yaml
                    └── src
                        └── root.package ### CURRENT DIRECTORY] ###
                            └── main.py
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
