Vkontakte Friends Gop-Stoper – это скрипт на питоне для парсинга всех друзей со страницы. http://vkontakte.ru/id*******
Вводите email, password и id. Затем скрипт парсит и сохраняет в c:/ids.txt в формате
Вот и сам скрипт:
#!/usr/bin/env python
# -*- coding:windows-1251 -*-
#Vkontakte Friends Gop-Stoper
#http://sql.parsers.info/
#faza02[at]gmail[dot]com
import urllib2, cookielib, time, os, re
def xek():
email = raw_input(u'\ne-m4il: ')
password = raw_input(u'passw0rd: ')
idd = raw_input(u'id: ')
print '\n[+] ok, wait..'
cookie = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookie))
urllib2.install_opener(opener)
headers = {"User-Agent" : "Mozilla/4.0 (compatible; MSIE 5.5; WindowsNT)" }
urllib2.urlopen(urllib2.Request('http://vkontakte.ru/login.php?email='+email+'&pass='+password, None, headers))
time.sleep(3)
frie = str(urllib2.urlopen(urllib2.Request('http://vkontakte.ru/friend.php?id=' + idd, None, headers)).read())
number = re.findall(r'\{\p\:\'http\:\/\/.*?\.vkontakte\.ru\/u(\d+)\/b\_.*?\.jpg\'', frie)
cho = str(number).replace(' \'', 'http://vkontakte.ru/id')
cho = cho[1:-1]
cho = cho.replace('\'','')
qq = open('c:/ids.txt', 'a+')
qq.write('http://vkontakte.ru/id')
qq.write(cho.replace(',','\n'))
qq.close()
print '\n[+] friends sav3d'
os.system("cls")
print 'Vkontakte Friends Gop-Stoper\n c0d3d by faza02\n sql.parsers.info'
xek()
by faza02.
http://sql.parsers.info
http://parsers.info

Эх, тоже самое бы и на PHP……….
Это все Гугль в популяризации Питона виноват