Results 1 to 8 of 8
Hybrid View
-
9th Sep 2011, 08:06 AM #1OPMember
Someone to code a link scraper
I want someone to make a link scraper that can fetch all filesonic links from a webpage (forum page). The scraper should also be able to scrape FSC links that are in [code] brackets as well as links like this:
Filesonic
Please list your price, or pm me your msn. Payment method: Alertpay only.rkze1 Reviewed by rkze1 on . Someone to code a link scraper I want someone to make a link scraper that can fetch all filesonic links from a webpage (forum page). The scraper should also be able to scrape FSC links that are in brackets as well as links like this: Filesonic Please list your price, or pm me your msn. Payment method: Alertpay only. Rating: 5
-
9th Sep 2011, 08:12 AM #2Banned
Hello,
I could do this for you, but only have Paypal as payment.
-
9th Sep 2011, 08:16 AM #3Member
what is your budget mate ?
-
9th Sep 2011, 08:18 AM #4OPMember
Well, my budget is flexible. I have no clue how much work is involved in a project like this so that's why I asked for offers.
-
9th Sep 2011, 09:00 AM #5MemberWebsite's:
premium-links.net wanted-programs.comIF U NEED A WINDOWS APPLICATION I CAN DO IT FOR FREE IN 10/15 MINS!!
IF U NEED A WINDOWS APPLICATION I CAN DO IT FOR FREE IN 10/15 MINS!!
__________________
Added after 35 minutes:
Here You Go A Simple Application!!
Download Link
Code:http://www.mediafire.com/?8h48m85hd3f8gfo
-
9th Sep 2011, 09:08 AM #6OPMember
Thanks Raj
-
9th Sep 2011, 09:09 AM #7MemberWebsite's:
premium-links.net wanted-programs.comThe Source Code : (VB.Net) {FrameWork 2.0}
Code:Imports System.Net Imports System.Text Imports System.IO Imports System.Text.RegularExpressions Imports System.Threading Public Class frmMain Private Event NewLink(ByVal mLink As String) Private Sub cmdStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdStart.Click If Not txtUrl.Text.StartsWith("http") Then MessageBox.Show("Please Input A Valid Url") Exit Sub End If Dim mThread As New Thread(AddressOf GetLinks) mThread.Name = "ripper" mThread.Priority = ThreadPriority.Normal mThread.Start() End Sub Private Sub GetLinks() Try Dim mUri As New Uri(txtUrl.Text) Dim request As HttpWebRequest Dim response As HttpWebResponse request = DirectCast(WebRequest.Create(mUri), HttpWebRequest) request.AllowAutoRedirect = True request.MaximumAutomaticRedirections = 2 request.Timeout = 30000 request.ServicePoint.Expect100Continue = False request.AutomaticDecompression = DecompressionMethods.Deflate Or DecompressionMethods.GZip Or DecompressionMethods.None request.KeepAlive = False request.Accept = "*/*" request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2" response = DirectCast(request.GetResponse, HttpWebResponse) Dim sData As String = "" Using sr As New StreamReader(response.GetResponseStream()) sData = sr.ReadToEnd() sr.Close() End Using response.Close() RaiseEvent NewLink(sData) Catch ex As WebException MessageBox.Show("Unable To Retived Page Source", "Link Scraper") MessageBox.Show(ex.Message) End Try End Sub Private Delegate Sub str(ByVal s As String) Private Sub LinkHandler(ByVal strData As String) If InvokeRequired Then Dim d As New str(AddressOf LinkHandler) BeginInvoke(d, New Object() {strData}) Else Dim MC As MatchCollection = Regex.Matches(strData, "http://(?:|www\.)filesonic.com/file/\d+", RegexOptions.IgnoreCase Or RegexOptions.Multiline) lb.Items.Clear() For Each M As Match In MC If lb.FindStringExact(M.Value) = -1 Then lb.Items.Add(M.Value) End If Next txtLink.Text = "" For Each item As Object In lb.Items txtLink.Text &= vbCrLf & CType(item, String) Next End If End Sub Private Sub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load AddHandler Me.NewLink, AddressOf LinkHandler End Sub Private Sub btnClipboard_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try Dim cData As String = Clipboard.GetText() If cData.Length > 0 Then RaiseEvent NewLink(cData) End If Catch ex As Exception MessageBox.Show("Unable To Read Clipboard") MessageBox.Show(ex.Message) End Try End Sub End Class
-
9th Sep 2011, 09:44 AM #8Banned
Hello Raj, you are great
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
[Hiring] MS Windows app developer - Scraper
By wdc in forum Completed TransactionsReplies: 0Last Post: 27th Nov 2011, 09:59 PM -
Link exchange code
By loverhaker in forum Webmaster DiscussionReplies: 5Last Post: 13th Aug 2010, 07:27 PM -
Wordpress Link Code Help Need
By rapid-ddldotcom in forum Webmaster DiscussionReplies: 0Last Post: 18th Jun 2010, 06:38 PM
themaPoster - post to forums and...
Version 5.35 released. Open older version (or...