class documentation

Class representing an Arxiv document.

Method __init__ Initialize an ArxivDocument object.
Method __str__ Return a string representation of the ArxivDocument object.

Inherited from Document:

Method __repr__ Return a string representation of the Document object.
Instance Variable author Undocumented
Instance Variable date Undocumented
Instance Variable source Undocumented
Instance Variable text Undocumented
Instance Variable title Undocumented
Instance Variable url Undocumented
def __init__(self, title: str, date: str, authors: list, url: str, source: str, text: str): (source)

Initialize an ArxivDocument object.

Args:

    title (str): The title of the document.
    date (str): The date of the document.
    authors (list): The authors of the document.
    url (str): The URL of the document.
    text (str): Abstract of the document.
def __str__(self) -> str: (source)

Return a string representation of the ArxivDocument object.