File | Date | Author | Commit |
---|---|---|---|
resume_copilot_lib | 2025-03-06 |
![]() |
[72d324] *init |
tests | 2025-03-06 |
![]() |
[72d324] *init |
.gitignore | 2025-03-06 |
![]() |
[f413f8] +added myenv to gitignore |
MANIFEST.in | 2025-03-06 |
![]() |
[72d324] *init |
README.md | 2025-03-06 |
![]() |
[17756a] *make readme shorter |
setup.py | 2025-03-06 |
![]() |
[72d324] *init |
ResumeCopilotLib is a Python library designed to interact with the Resume Copilot API, allowing developers to integrate job search functionality into their applications.
For detailed API documentation, visit:
Resume Copilot API
Resume Copilot is your one-stop solution for crafting the perfect resume. It is available as a plugin in the ChatGPT Plus version, helping users streamline their resume-building process. With Resume Copilot, you can:
To learn more, visit:
Resume Copilot Website
Resume Copilot is also available as a ChatGPT plugin to enhance your resume-writing experience. You can access it here:
Resume Copilot on ChatGPT
To install the ResumeCopilot Python library via pip, use the following command:
pip install resume-copilot-lib
Here's a basic example of how to use the library to perform a job search:
from resume_copilot_lib import JobSearchHelper, JobSearchRequest
request = JobSearchRequest(
title="developer",
size=2
)
results = JobSearchHelper.search_jobs(request)
for job in results.jobs:
print(f"Job: {job.name} at {job.company_name}")
We welcome contributions! Feel free to open issues or submit pull requests to improve the library.
This project is licensed under the MIT License.