Fetches remote job listings from Remotive API and exports them to a formatted Excel file.
- Python 3.10+
- requests
- openpyxl
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txtcd src
python main.pyOutput: jobs.xlsx in the src/ folder.
Edit src/config.py:
SEARCH_QUERY— keyword to search (e.g. "python", "javascript", "devops")MAX_JOBS— max number of results
src/
main.py — entry point
fetcher.py — API calls and data parsing
exporter.py — Excel export with formatting
config.py — settings
requirements.txt