1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
#!/usr/bin/env python
# coding: utf-8
"""Mirrorselect 2.x
Tool for selecting Gentoo source and rsync mirrors.
Copyright 2009-2012 Gentoo Foundation
Copyright (C) 2009 Sebastian Pipping <sebastian@pipping.org>
Copyright (C) 2009 Christian Ruppert <idl0r@gentoo.org>
Copyright (C) 2012 Brian Dolbec <dolsen@gentoo.org>
Distributed under the terms of the GNU General Public License v2
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
"""
from xml.etree import ElementTree as ET
# old url's
#MIRRORS_3_XML = 'http://www.gentoo.org/main/en/mirrors3.xml'
#MIRRORS_RSYNC_DATA = 'http://www.gentoo.org/main/en/mirrors-rsync-data.xml'
# new urls
MIRRORS_3_XML = 'https://api.gentoo.org/mirrors/distfiles.xml'
MIRRORS_RSYNC_DATA = 'https://api.gentoo.org/mirrors/rsync.xml'
class MirrorParser3:
def __init__(self, options=None):
self._reset()
def _reset(self):
self._dict = {}
def parse(self, text):
self._reset()
for mirrorgroup in ET.XML(text):
for mirror in mirrorgroup:
name = ''
for e in mirror:
if e.tag == 'name':
name = e.text
if e.tag == 'uri':
uri = e.text
self._dict[uri] = {
"name": name,
"country": mirrorgroup.get("countryname"),
"region": mirrorgroup.get("region"),
"ipv4": e.get("ipv4"),
"ipv6": e.get("ipv6"),
"proto": e.get("protocol"),
}
def tuples(self):
return [(url, args) for url, args in list(self._dict.items())]
def uris(self):
return [url for url, args in list(self._dict.items())]
if __name__ == '__main__':
import sys
if sys.version_info[0] >= 3:
import urllib.request, urllib.parse, urllib.error
parser = MirrorParser3()
parser.parse(urllib.request.urlopen(MIRRORS_3_XML).read())
else:
import urllib
parser = MirrorParser3()
parser.parse(urllib.urlopen(MIRRORS_3_XML).read())
print('===== tuples')
print(parser.tuples())
print('===== uris')
print(parser.uris())
|