Skip to content
Snippets Groups Projects
Commit 8f3baca5 authored by Evgeny Lavrik's avatar Evgeny Lavrik
Browse files

Fix for compatibility with python3

parent b84a811a
No related branches found
No related tags found
No related merge requests found
No preview for this file type
.python-version
.DS_Store
.idea/*
**/*.pyc
......
import json
import ConfigParser
try:
import ConfigParser
except ImportError:
import configparser as ConfigParser
import requests
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment