Created
February 23, 2021 16:30
-
-
Save saasindustries/3702979a27682019c33176ae76632a49 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static void Main(string[] args) | |
{ | |
Console.WriteLine("Please enter the Keyword :"); | |
var Keyword = Console.ReadLine(); | |
var adLinks = GetAdLinks("https://losangeles.craigslist.org/search/bbb?"); | |
var lstAdDetails = GetAdDetails(adLinks, Keyword); | |
ExportAdsToCsv(lstAdDetails, Keyword); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment