Metadata-Version: 2.1
Name: pyescape
Version: 2019.10.16.7.48.18.38427
Summary: escape characters functions and utilities
Home-page: https://github.com/qaviton/escape
Author: yehonadav
Author-email: yonadav.barilan@gmail.com
License: apache-2.0
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown

# Escape
![logo](https://www.qaviton.com/wp-content/uploads/logo-svg.svg)  
[![version](https://img.shields.io/pypi/v/escape.svg)](https://pypi.python.org/pypi)
[![license](https://img.shields.io/pypi/l/escape.svg)](https://pypi.python.org/pypi)
[![open issues](https://img.shields.io/github/issues/qaviton/escape)](https://github/issues-raw/qaviton/qaviton_package_manager)
[![downloads](https://img.shields.io/pypi/dm/escape.svg)](https://pypi.python.org/pypi)
![code size](https://img.shields.io/github/languages/code-size/qaviton/escape)
-------------------------  

Escape  
is a package handling characters  
that should be escaped such as: '" \\n\t.  

## Installation  
```sh  
pip install pyescape -U
```  

### Requirements
- Python 3.6+  

## Features  
* Escape class

## Usage  

```python
from os import system
from escape import Escape
from sys import executable

escape = Escape('"\' ')
executable = '"'+executable+'"'  # python executable with special characters

system(executable+' -c "print(\'hello world\')"')
```  


