job tailor
1.0.0
Jobtraitor هي حزمة Python التي تساعدك على إنشاء استئناف مخصص وخطاب تغطية استنادًا إلى سيرة ذاتية رئيسية ووصف وظيفي محدد. إنه يعزز Gemini LLM لإنشاء مستندات مصممة تتوافق مع متطلبات الوظيفة.
إليك كيف يمكنك تثبيت واستخدام الوظائف الوظيفية لإنشاء سيرة ذاتية ورسالة تغطية مخصصة:
pip install jobtailor
from jobtailor import JobTailor
jt = JobTailor (
resume_path = '<resume_path>' ,
job_description = '<job_description_text>' ,
gemini_key = '<gemini_key>' ,
optional_params = {
"output_dir" : "<output_dir>" , # Default: "./output/"
"pdflatex_path" : "<pdflatex_installation_path>/pdflatex" , # Default is "pdflatex" global access
"resume_output_file_name" : "<desired_resume_output_file_name>.pdf" , # Default: jobtailor-curated-resume.pdf
"coverletter_output_file_name" : "<desired_coverletter_output_file_name>.docx" # Default: jobtailor-curated-coverletter.docx
}
)
print ( "FINAL RESUME = " + jt . tailored_resume_path )
print ( "FINAL COVERLETTER = " + jt . tailored_coverletter_path )
إذا كنت ترغب في المساهمة في هذا المشروع ، فيرجى اتباع الإرشادات أدناه.
git clone https://github.com/sahilhadke/job-tailor.git
cd job-tailor
git commit -m " Add login functionality "
git push origin your-branch-name
شكرا لك على اهتمامك بالمساهمة في هذا المشروع! معا ، يمكننا جعلها أفضل للجميع.