Activity Stream
48,167 MEMBERS
6872 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 8 of 8

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1.     
    #1
    Member

    Default 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

  2.   Sponsored Links

  3.     
    #2
    Banned
    Hello,

    I could do this for you, but only have Paypal as payment.

  4.     
    #3
    Member
    what is your budget mate ?

  5.     
    #4
    Member
    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.

  6.     
    #5
    Member
    Website's:
    premium-links.net wanted-programs.com
    IF 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

  7.     
    #6
    Member
    Thanks Raj

  8.     
    #7
    Member
    Website's:
    premium-links.net wanted-programs.com
    The 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

  9.     
    #8
    Banned
    Hello Raj, you are great

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [Hiring] MS Windows app developer - Scraper
    By wdc in forum Completed Transactions
    Replies: 0
    Last Post: 27th Nov 2011, 09:59 PM
  2. Link exchange code
    By loverhaker in forum Webmaster Discussion
    Replies: 5
    Last Post: 13th Aug 2010, 07:27 PM
  3. Wordpress Link Code Help Need
    By rapid-ddldotcom in forum Webmaster Discussion
    Replies: 0
    Last Post: 18th Jun 2010, 06:38 PM

Tags for this Thread

BE SOCIAL