Hit me up in a pm.
So who can I hire for scraping sites.
Collapse
X
-
BluehorseshoeSBR Posting Legend
- 07-13-06
- 14985
#1So who can I hire for scraping sites.Tags: None -
shadymcgradySBR Posting Legend
- 02-27-12
- 10036
#2Just download and customize a webscraperComment -
oilcountry99SBR Wise Guy
- 08-29-10
- 707
#3Where from?Comment -
Waterstpub87SBR MVP
- 09-09-09
- 4102
#4What are you looking to scrape?Comment -
oilcountry99SBR Wise Guy
- 08-29-10
- 707
#5daily odds nhl mlb, used to use VI site with excelComment -
oilcountry99SBR Wise Guy
- 08-29-10
- 707
#7They no longer show the sportsbooks I need, i need a new source to pull into excel.Comment -
Waterstpub87SBR MVP
- 09-09-09
- 4102
#8Comment -
oilcountry99SBR Wise Guy
- 08-29-10
- 707
#9I would like to use SBRodds as well, I haven't had success scraping it with excel, but I"m far from an expert in excel. I don't know how to use python, I've dabbled with it but that's about it.
how about c o v e r s??Comment -
turtledovesSBR MVP
- 08-27-17
- 3398
#10what's a working odds scraper program like this worth to you hypothetically?
you can look on freelance programming websites to hire someone with test automation/selenium skills. testers with these skills should probably able to scrape most sites. coding to verify a website and collect data from a website can be very similar, that's why you might be able to hire a tester cheaper than a software developer.
code quality can be shitty though and you might a get a mess that is harder to maintain.
if the data source/site changes, you might have to hire again for touchups/fixing. you should probably have multiple data sources in case one goes down/changes.
i bet plenty of gamblers here have working scrapers of what you need. you can probably make an offer if you find the right person...Comment -
oilcountry99SBR Wise Guy
- 08-29-10
- 707
#12Waterstpub87......I've used that site in the past and didn't really care for it. I'd need something comparable to vi. i like the sbr format. Appreciate your help.Comment -
oilcountry99SBR Wise Guy
- 08-29-10
- 707
#14I'm also not looking for historical odds, just the current day, including the opener. Does that make things easier.
Sorry for hijacking the OP's thread, but its on topic so figured it was ok to post here
SBR should just add an export to .csv button on the odds page. I'm going to go suggest that right nowComment -
Waterstpub87SBR MVP
- 09-09-09
- 4102
#15I'm also not looking for historical odds, just the current day, including the opener. Does that make things easier.
Sorry for hijacking the OP's thread, but its on topic so figured it was ok to post here
SBR should just add an export to .csv button on the odds page. I'm going to go suggest that right nowComment -
oilcountry99SBR Wise Guy
- 08-29-10
- 707
-
Gaze73SBR MVP
- 01-27-14
- 3291
#17My brother can do that sort of thing, he made me a scraper.Comment -
BsimsSBR Wise Guy
- 02-03-09
- 827
-
Waterstpub87SBR MVP
- 09-09-09
- 4102
#19
Too much programming and shit to do for sports betting. August - April the busiest time. So much in the backlog.Comment -
BsimsSBR Wise Guy
- 02-03-09
- 827
-
BsimsSBR Wise Guy
- 02-03-09
- 827
#21
You're right about the work involved.Comment -
Waterstpub87SBR MVP
- 09-09-09
- 4102
#22I don't directly scrape web pages, the language I use doesn't really have the tools necessary. I save the web pages I want. I then have code that can read this file and create a comma delimited file in spreadsheet format. Figuring out where the actual data is in the web page is difficult but necessary. Periodically a site will make changes to there web pages thus requiring an effort to modify the code.
You're right about the work involved.Comment -
BsimsSBR Wise Guy
- 02-03-09
- 827
#23I write in Basic. Almost all my code is in Power Basic. It is a compiler/interpreter. I cannot download any complex web pages in it. So I use the Liberty Basic compiler to download most web pages I want. I use data files to request the pages I want and the Liberty Basic code fetches them and saves them. Then the Power Basic code processes the saved pages.
I'd really like to learn Python and be able to combine the web fetching and data processing in one place. Then I could write some API's to really automate some processing. Unfortunately my priority now is bitcoin analysis looking for buy and sell price points.Comment -
NappyxSBR Wise Guy
- 11-05-17
- 652
#24Message me about what you want and I may be able to help. VB.Net coder that has scraped many sites.Comment -
sonnyboySBR Rookie
- 08-10-19
- 2
#25download the SBR daily web page/table to excel
Can the SBR daily web page/table be downloaded.
I made a macro with the macro recorder to do that with the DonBest site , but no matter what i try i cant download the SBR site into excel.
An earlier poster said that he was going to suggest that they put a link to download it into excel. I wonder if that has been asked.
sonnyboyComment -
oilcountry99SBR Wise Guy
- 08-29-10
- 707
#26Can the SBR daily web page/table be downloaded.
I made a macro with the macro recorder to do that with the DonBest site , but no matter what i try i cant download the SBR site into excel.
An earlier poster said that he was going to suggest that they put a link to download it into excel. I wonder if that has been asked.
sonnyboyComment -
turbobetsSBR Wise Guy
- 01-13-06
- 995
-
wadesiSBR Rookie
- 09-01-12
- 15
#28I know this is a old thread but has anyone come up with a way to scrape the sbrodds site into excel or csv? I would def pay for a pro membership if this functionality existed....Comment -
oilcountry99SBR Wise Guy
- 08-29-10
- 707
#29check out octoparse....works wellComment -
Waterstpub87SBR MVP
- 09-09-09
- 4102
#30Sub scrapegames()
Range("A").ClearContents
Dim Day As String
Day = Range("K1").Value
Application.CutCopyMode = False
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;https://classic.sportsbookreview.com/betting-odds/nba-basketball/?date=" + Day _
, Destination:=Range("$A$1"))
.Name = "?date=20181003"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlOverwriteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
Range("D1").Select
Application.CutCopyMode = False
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;https://classic.sportsbookreview.com/betting-odds/nba-basketball/totals/?date=" + Day _
, Destination:=Range("$C$1"))
.Name = "?date=20181003_1"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlOverwriteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
Columns("A:F").Select
Selection.Replace What:="top", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Selection.Replace What:="Help", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Columns("A:C").Select
Selection.Replace What:="=", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
End SubComment -
Waterstpub87SBR MVP
- 09-09-09
- 4102
#31the smiley face is A : DComment -
Waterstpub87SBR MVP
- 09-09-09
- 4102
#32you then have to match formulas to put it into a table form.
This will put spreads in "A" and totals in "C"Comment -
Waterstpub87SBR MVP
- 09-09-09
- 4102
#33You have to put a date in "k1", like "3/11/2021"Comment
SBR Contests
Collapse
Top-Rated US Sportsbooks
Collapse
#1 BetMGM
4.8/5 BetMGM Bonus Code
#2 FanDuel
4.8/5 FanDuel Promo Code
#3 Caesars
4.8/5 Caesars Promo Code
#4 DraftKings
4.7/5 DraftKings Promo Code
#5 Fanatics
#6 bet365
4.7/5 bet365 Bonus Code
#7 Hard Rock
4.1/5 Hard Rock Bet Promo Code
#8 BetRivers
4.1/5 BetRivers Bonus Code