-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhydrometer.py
executable file
·208 lines (131 loc) · 5.17 KB
/
hydrometer.py
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#!/usr/bin/env python3
from bs4 import BeautifulSoup
from urllib.request import Request, urlopen
from urllib.error import URLError, HTTPError
import sys, string
import re
from subprocess import Popen, PIPE
import subprocess
import argparse
def request_url(url):
req = Request(url)
try:
response = urlopen(req)
except HTTPError as error:
print('The server couldn\'t fulfill the request.')
print('Error code: ', error.code)
except URLError as error:
print('We failed to reach the server.')
print('Reason: ', error.reason)
else:
data = response.read()
return data
def sourceforge_parse(line):
pattern = re.compile('(?<=net/)(?P<name>[a-zA-Z0-9\-]+)/')
match = pattern.search(line)
if match:
if match.group('name') == 'project' or match.group('name') == 'projects' or match.group(
'name') == 'sourceforge':
pattern2 = re.compile('(?<=net/)' + match.group('name') + '/(?P<name>[a-zA-Z0-9\-]+)/')
match = pattern2.search(line)
if match:
#print (match.group('name'))
sourceforge_read(match.group('name'))
else:
#print (match.group('name'))
sourceforge_read(match.group('name'))
def sourceforge_read(name):
url = 'http://sourceforge.net/projects/' + name + '/files/'
#print (url)
data = request_url(url)
if data:
soup = BeautifulSoup(data)
for dl in soup.find_all("div", class_="download-bar"):
a = dl.contents[1]
print(line)
print('\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t', a.contents[1].contents[1])
print('\n\n')
def googlecode_parse(line):
pattern = re.compile('(?<=//)(?P<name>[a-zA-Z0-9\-]+)')
match = pattern.search(line)
if match:
url = 'http://code.google.com/p/' + match.group('name') + '/downloads/list'
data = request_url(url)
if data:
soup = BeautifulSoup(data)
print('\n\n\n\n')
print(line)
print('\n\n')
for dl in soup.find_all("tr", class_='ifOpened'):
print(dl)
def gnumirror_parse(line):
pattern = re.compile('(?<=net/)(?P<name>[a-zA-Z0-9\-]+)/')
match = re.search('(?<=org/)\w+', line)
if match:
url = 'http://ftp.gnu.org/gnu/' + match.group(0) + '/?C=M;O=D'
data = request_url(url)
if data:
soup = BeautifulSoup(data)
print('\n\n\n\n')
print(line)
print('\n\n')
for dl in soup.find_all("a"):
print(dl)
def github_parse(line):
pattern = re.compile('(?<=github.com/)(?P<username>[a-zA-Z0-9\-]+)/(?P<projectname>[a-zA-Z0-9\-]+)/')
match = pattern.search(line)
if match:
if match.group('username') == 'downloads':
pattern2 = re.compile(
'(?<=github.com/)downloads/(?P<username>[a-zA-Z0-9\-]+)/(?P<projectname>[a-zA-Z0-9\-]+)/')
match = pattern2.search(line)
if match:
github_read(match.group('username'), match.group('projectname'))
def github_read(username, projectname):
url = 'http://github.com/' + username + '/' + projectname + '/tags'
data = request_url(url)
dater = True
if data:
soup = BeautifulSoup(data)
for dl in soup.find_all("table", class_="releases-tag-list"):
print('\n\n\n\n\n\n')
print(line)
for tr in dl.find_all("tr"):
for a in tr.find_all("a"):
if (dater):
print(a['href'])
#dater = False
def package_list(source):
process = subprocess.Popen("grep url /usr/local/Library/Formula/*.rb | grep " + source,
shell=True,
stdout=subprocess.PIPE)
stdout_data = str(process.communicate()[0], encoding='utf8')
package_list = stdout_data.split('\n')
return package_list
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Please specify which source of homebrew packages you wish to parse.')
group = parser.add_mutually_exclusive_group()
group.add_argument("-s", "--sourceforge", action="store_true")
group.add_argument("-c", "--googlecode", action="store_true")
group.add_argument("-n", "--gnuftp", action="store_true")
group.add_argument("-g", "--github", action="store_true")
args = parser.parse_args()
print('Building a list of files to process, this may take some time...')
if args.sourceforge:
packages = package_list('sourceforge')
for line in packages:
sourceforge_parse(line)
elif args.googlecode:
packages = package_list('googlecode')
for line in packages:
googlecode_parse(line)
elif args.gnuftp:
packages = package_list('ftpmirror | grep -v aspell')
for line in packages:
gnumirror_parse(line)
elif args.github:
packages = package_list('github | grep -v diff')
for line in packages:
github_parse(line)
else:
print('No package source specified, halting. (try --help)')