Metadata-Version: 2.1
Name: nossl
Version: 0.0.2
Summary: Change default behavior of ssl and requests library
Home-page: UNKNOWN
Author: Sangwon Lee
Author-email: lsw91.main@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests

# NOSSL

It'a simple script that manipulates default behavior of `ssl` and `requests`.

It modifies following lines:

`ssl.py`

```python
_create_default_https_context = create_default_context
```
to
```python
_create_default_https_context = _create_unverified_context
```

`requests/sessions.py`

```python
self.verify = True
```
to
```python
self.verify = False
```

## Usage

Install `nossl`.
```
pip install nossl
```

And run the script.
```
nossl off
```

Yon can recover SSL also.
```
nossl on
```

