Bei diesem Projekt handelt es sich um ein auf Python basierendes Job-Grabbing-System, das Jobinformationen auf LinkedIn in eine strukturierte Notion-Datenbank importieren kann. Projektadresse: jobs-scrape-to-notion
<code class="language-bash">git clone https://github.com/namanvashistha/jobs-scrape-to-notion cd jobs-scrape-to-notion</code>
<code class="language-bash">pip install -r requirements.txt</code>
Begriff konfigurieren:
Umgebungsvariablen festlegen:
<code class="language-bash">cp .env.example .env</code>
Aktualisieren Sie Ihre Anmeldeinformationen in der Datei .env
:
<code>NOTION_API_KEY=你的集成令牌 NOTION_DATABASE_ID=你的数据库ID</code>
<code class="language-python">def fetch_jobs(search_terms, location, results_wanted=20): # 基于多个搜索词抓取 LinkedIn 职位信息 # 返回包含职位详情的 pandas DataFrame</code>
<code class="language-bash">python main.py</code>
Standardkonfiguration:
["Software Engineer", "Backend", "SDE"]
Ändern Sie die Funktion scraper.py
in der Datei main()
:
<code class="language-python">search_terms = ["你的", "搜索", "词"] location = "你的地点" results_wanted = 30 # 每个词的结果数</code>
Das System enthält:
Besuchen Sie das Projekt-Repository für Quellcode und detaillierte Dokumentation.
Das obige ist der detaillierte Inhalt vonAutomatisierte Jobsuche: LinkedIn-Jobs an Notion Board. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!