Skip to content

Commit

Permalink
Added arcadiamedical
Browse files Browse the repository at this point in the history
  • Loading branch information
RaresCode committed Sep 21, 2023
1 parent 0aa6025 commit 7afce9b
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions sites/arcadiamedical.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
#
#
#
# arcadiamedical > https://www.arcadiamedical.ro/despre-express-credit-amanet/cariere/


from sites.website_scraper_bs4 import BS4Scraper

class arcadiamedicalScraper(BS4Scraper):

"""
A class for scraping job data from arcadiamedical website.
"""
url = 'https://www.arcadiamedical.ro/cariere'
url_logo = 'https://www.arcadiamedical.ro/images/logo-Arcadia.svg'
company_name = 'arcadiamedical'

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 arcadiamedical website.
"""

job_titles_elements = self.get_jobs_elements('class_', "title box")

self.job_titles = self.get_jobs_details_text(job_titles_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, job_url, "România", "Iasi")
self.job_count += 1

if __name__ == "__main__":
arcadiamedical = arcadiamedicalScraper()
arcadiamedical.get_response()
arcadiamedical.scrape_jobs()
arcadiamedical.sent_to_future()



0 comments on commit 7afce9b

Please sign in to comment.