job

 1import datetime
 2
 3
 4class Job:
 5    """Represents a job posting on LinkedIn"""
 6
 7    def __init__(
 8        self,
 9        title: str = "Software Engineer",
10        company: str = "Google",
11        location: str = "Mountain View, CA",
12        link: str = "https://www.google.com/",
13        date: str = "Today",
14        date_added: str = str(datetime.datetime.now()),
15    ) -> None:
16        self.title = title
17        self.company = company
18        self.location = location
19        self.link = link
20        self.date = date
21        self.date_added = date_added
22
23    def __str__(self):
24        """Returns a string representation of the Job object"""
25
26        return f"Title: {self.title}\nCompany: {self.company}\nLocation: {self.location}\nLink: {self.link}\nDate Posted: {self.date}\nDate Added: {self.date_added}\n"
class Job:
 5class Job:
 6    """Represents a job posting on LinkedIn"""
 7
 8    def __init__(
 9        self,
10        title: str = "Software Engineer",
11        company: str = "Google",
12        location: str = "Mountain View, CA",
13        link: str = "https://www.google.com/",
14        date: str = "Today",
15        date_added: str = str(datetime.datetime.now()),
16    ) -> None:
17        self.title = title
18        self.company = company
19        self.location = location
20        self.link = link
21        self.date = date
22        self.date_added = date_added
23
24    def __str__(self):
25        """Returns a string representation of the Job object"""
26
27        return f"Title: {self.title}\nCompany: {self.company}\nLocation: {self.location}\nLink: {self.link}\nDate Posted: {self.date}\nDate Added: {self.date_added}\n"

Represents a job posting on LinkedIn

Job( title: str = 'Software Engineer', company: str = 'Google', location: str = 'Mountain View, CA', link: str = 'https://www.google.com/', date: str = 'Today', date_added: str = '2023-05-17 04:29:40.083287')
 8    def __init__(
 9        self,
10        title: str = "Software Engineer",
11        company: str = "Google",
12        location: str = "Mountain View, CA",
13        link: str = "https://www.google.com/",
14        date: str = "Today",
15        date_added: str = str(datetime.datetime.now()),
16    ) -> None:
17        self.title = title
18        self.company = company
19        self.location = location
20        self.link = link
21        self.date = date
22        self.date_added = date_added