We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent de6cc8d commit e1592d2Copy full SHA for e1592d2
scripts/parse_dash_results.py
@@ -17,6 +17,10 @@
17
* *
18
***************************************************************************
19
"""
20
+from __future__ import print_function
21
+from future import standard_library
22
+standard_library.install_aliases()
23
+from builtins import range
24
25
__author__ = 'Nyall Dawson'
26
__date__ = 'October 2016'
@@ -27,7 +31,9 @@
27
31
import os
28
32
import sys
29
33
import argparse
30
-import urllib
34
+import urllib.request
35
+import urllib.parse
36
+import urllib.error
37
import re
38
from bs4 import BeautifulSoup
39
from PyQt5.QtGui import (
0 commit comments