Metadata-Version: 2.1
Name: vespy
Version: 0.0.19
Summary: A small utility package
Home-page: https://github.com/
Author: Emil Haldrup Eriksen
Author-email: emil.h.eriksen@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown

If you encounter an SSLError from within Vestas firewalls, chances are that you haven't added the proper certificates. With vespy, you can do it like this

```
pip install vespy; vespy --fix-ssl
```

Alternatively, you can invoke the fix from within python (e.g. in your own library),

    from vespy import fix_ssl_error
    fix_ssl_error()


