avimittal30 commited on
Commit
1ff4a94
·
1 Parent(s): 09d7a91

removing unncessary stuff & adding environment variable to be pushed to repo

Browse files
Files changed (2) hide show
  1. helper.py +0 -17
  2. parse_job_description.py +1 -1
helper.py CHANGED
@@ -6,23 +6,6 @@ from parse_job_description import extract_job_details
6
  from data import resumes_data
7
  import pandas as pd
8
 
9
- job_description = """
10
- Five or more years of experience as engineer of software and networking platforms.
11
- Seven or more years of experience (professional and academic) with Java, Python, and C++
12
-
13
- Proven ability to document design processes, including development, testing, analytics, and troubleshooting.
14
- Experience with rapid development cycles in a web-based environment.
15
- Strong ability in scripting and test automation.
16
- Desire to continue professional growth through training and education.
17
-
18
- Bachelor’s or Master's degree (or equivalent) in software engineering or information technology or computer science/engineering.
19
- Working knowledge of relational databases as well as ORM and SQL technologies.
20
- Proficiency with HTML5, CSS3, and content management systems.
21
- Web application development experience with multiple frameworks, including Wicket, GWT, and Spring MVC
22
- """
23
- ## this function would be called in the main file to get parsed responses.
24
- response_text=extract_job_details(job_description)
25
-
26
  def extract_experience(text):
27
  # Patterns for identifying Bachelor's and Master's degrees
28
  print('Inside Extract Experience !!!')
 
6
  from data import resumes_data
7
  import pandas as pd
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  def extract_experience(text):
10
  # Patterns for identifying Bachelor's and Master's degrees
11
  print('Inside Extract Experience !!!')
parse_job_description.py CHANGED
@@ -6,7 +6,7 @@ import re
6
  import json
7
 
8
  load_dotenv()
9
- os.environ['OPENAI_API_KEY']=os.environ.get('OPENAI_API_KEY')
10
 
11
 
12
  job_description = """
 
6
  import json
7
 
8
  load_dotenv()
9
+ os.environ['OPENAI_API_KEY']=os.getenv('OPENAI_API_KEY')
10
 
11
 
12
  job_description = """