{"id":22050220,"url":"https://github.com/queukat/xing_easy_apply_bot","last_synced_at":"2026-05-17T19:36:15.046Z","repository":{"id":208101394,"uuid":"720710158","full_name":"queukat/xing_easy_apply_bot","owner":"queukat","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-25T22:17:06.000Z","size":103,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-13T16:38:30.539Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/queukat.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-11-19T11:03:40.000Z","updated_at":"2025-02-25T22:17:10.000Z","dependencies_parsed_at":"2023-12-17T15:30:51.013Z","dependency_job_id":"a5a42cc0-8b5b-4ec0-b31a-2d09954bff5c","html_url":"https://github.com/queukat/xing_easy_apply_bot","commit_stats":null,"previous_names":["queukat/xing_easy_apply_bot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/queukat/xing_easy_apply_bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/queukat%2Fxing_easy_apply_bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/queukat%2Fxing_easy_apply_bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/queukat%2Fxing_easy_apply_bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/queukat%2Fxing_easy_apply_bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/queukat","download_url":"https://codeload.github.com/queukat/xing_easy_apply_bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/queukat%2Fxing_easy_apply_bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279016098,"owners_count":26085802,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-30T14:18:20.543Z","updated_at":"2025-10-13T16:38:31.147Z","avatar_url":"https://github.com/queukat.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# XING/Join Automated Scraper \u0026 GPT Resume Builder\n\nThis project automates the following processes:\n\n1. **Collecting job listings from XING** (saving to CSV).\n2. **Evaluating job relevance via GPT** (OpenAI ChatCompletion).\n3. **Automatically applying to jobs** (Easy Apply, Chat, or External).\n4. **Generating PDF resumes** with GPT and WeasyPrint, tailored to each job description.\n\nAdditionally, it includes examples for join.com (handling partially filled applications) and adesso.com.\n\n---\n\n## Project Structure\n\n```\nxing_automation/\n├─ main.py\n├─ config.py\n├─ gpt.py\n├─ migrate.py\n├─ resume.yaml\n├─ resume_buld_test.py\n├─ styles.css\n├─ requirements.txt\n├─ README.txt\n├─ generated_pdfs/\n├─ scrapers/\n│   ├─ xing.py\n│   ├─ join.py\n│   ├─ adesso.py\n│   ├─ gpt_resume_builder.py\n│   ├─ utils.py\n│   ├─ prompts.py\n│   └─ prompts/\n│       └─ (text prompt files)\n\n```\n\n- **main.py**: Entry point with a simple menu (1. collect → 2. GPT-evaluate → 3. apply).\n- **config.py**: Project configuration (file paths, credentials, API keys).\n- **gpt.py**: Logic to evaluate job relevance (OpenAI).\n- **migrate.py**: Migrates data from stats.csv to job_listings.csv.\n- **resume.yaml**: Example of candidate data in YAML (personal info, skills, etc.).\n- **resume_buld_test.py**: Tests generating a PDF resume with GPT \u0026 WeasyPrint.\n- **styles.css**: CSS for generated PDF.\n- **scrapers/**: Contains scrapers for XING, join, adesso, plus utility modules.\n- **generated_pdfs/**: Stores generated PDF files.\n\n---\n\n## Installation\n\n1. **Clone** the repository:\n   ```sh\n   git clone https://github.com/\u003cusername\u003e/xing-automation.git\n   cd xing-automation\n   ```\n\n2. **(Optional) Create a virtual environment**:\n   ```sh\n   python -m venv .venv\n   source .venv/bin/activate  # On Linux / Mac\n   .venv\\Scripts\\activate  # On Windows\n   ```\n\n3. **Install dependencies**:\n   ```sh\n   pip install -r requirements.txt\n   ```\n   Or install modules individually:\n   ```sh\n   pip install playwright openai weasyprint langdetect pyyaml deep-translator\n   ```\n\n4. **(Optional) Install Playwright browsers**:\n   ```sh\n   playwright install\n   ```\n\n5. **Update `config.py`**:\n   - Set your `OPENAI_API_KEY`.\n   - Enter your XING login/password.\n   - Adjust any file paths if needed.\n\n---\n\n## Usage\n\nSimply run `main.py`:\n\n```sh\npython main.py\n```\n\nYou will see a menu like:\n\n```\n1 - Collect jobs (XING)\n2 - GPT relevance evaluation\n3 - Auto-apply on XING\n4 - All steps (1 -\u003e 2 -\u003e 3)\n0 - Exit\n```\n\n- **Collect**: scrapes XING job listings into `job_listings.csv`.\n- **Evaluate**: uses GPT to score and comment (GPT_Score, GPT_Reason).\n- **Apply**: automatically applies to selected jobs (Easy Apply), or marks external links.\n\n---\n\n## Resume Data\n\n- **`resume.yaml`**: Contains your personal details, skills, experience, etc.\n- **`resume_buld_test.py`**: Shows how to generate a PDF resume (GPT + WeasyPrint).\n- For a minimal example, see `resume_template.yaml` or the main `resume.yaml`.\n\n---\n\n## Contributing\n\nPull requests are welcome. For large changes, open an issue first to discuss your ideas.\n\n---\n\n## License\n\nLicensed under the MIT License (see `LICENSE.txt` for details).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqueukat%2Fxing_easy_apply_bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqueukat%2Fxing_easy_apply_bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqueukat%2Fxing_easy_apply_bot/lists"}