Skip to content

Commit

Permalink
Added verla
Browse files Browse the repository at this point in the history
  • Loading branch information
RaresCode committed Oct 2, 2023
1 parent 8cbf959 commit 613dbfb
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
63 changes: 63 additions & 0 deletions sites/verla.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
#
#
#
# verla > https://www.verla.ro/oferte/cariere.html

from sites.website_scraper_bs4 import BS4Scraper

class verlaScraper(BS4Scraper):

"""
A class for scraping job data from verla website.
"""
url = 'https://www.verla.ro/oferte/cariere.html'
url_logo = 'https://www.verla.ro/images/2018/logo-alb2.png'
company_name = 'verla'


def __init__(self):
"""
Initialize the BS4Scraper class.
"""
self.job_count = 1
super().__init__(self.company_name, self.url_logo)

def get_response(self):
self.get_content(self.url)

def scrape_jobs(self):
"""
Scrape job data from verla website.
"""

job_elements = self.get_jobs_elements('class_', 'sppb-title-heading')

self.job_titles = self.get_jobs_details_text(job_elements)

self.format_data()

def sent_to_future(self):
self.send_to_viitor()

def return_data(self):
self.get_response()
self.scrape_jobs()
return self.formatted_data, self.company_name

def format_data(self):
"""
Iterate over all job details and send to the create jobs dictionary.
"""
for job_title in self.job_titles:
job_url = self.url + "#" + str(self.job_count)
self.create_jobs_dict(job_title.replace("ANGAJĂM ", ""), job_url, "România", ["Bucuresti, Cluj-Napoca, Iasi"])
self.job_count += 1

if __name__ == "__main__":
verla = verlaScraper()
verla.get_response()
verla.scrape_jobs()
verla.sent_to_future()



1 change: 1 addition & 0 deletions tests/module_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
'pimcopy': 'pimcopyScraper',
'canopy': 'canopyScraper',
'dentesse': 'dentesseScraper',
'verla': 'verlaScraper',

# Add more module names as needed
}

0 comments on commit 613dbfb

Please sign in to comment.