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
print("Testing Gist") |
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
# Small script to scrape job data using linkedin API | |
# NOTE: It doesn't check for duplicates, it can be improved here or can be cleaned up | |
# later on by using job_id (unique) | |
from urllib.parse import urlencode | |
from scrapy.http import HtmlResponse | |
import dateutil.relativedelta | |
import datetime | |
import scrapy |