-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
|
||
|
||
|