Source code for bibpy.entry.comment

# -*- coding: utf-8 -*-

"""Class representing a comment entry (@comment) in a bib file."""

from bibpy.entry.base import BaseEntry


[docs]class Comment(BaseEntry): """A comment entry (@comment) in a bib file.""" def __init__(self, value): """Create a comment entry with a single value.""" self._value = value
[docs] def format(self, indent=' ', singleline=True, braces=True, **kwargs): """Format an return the comment entry as a string. If singleline is True, put the entry on a single line. The contents of the preamble is indented by the indent argument if singleline is True. If braces is True, surround the entry by braces else parentheses. The kwargs are ignored for this entry type as there is no additional formatting. """ return self.format_auxiliary_entry( 'comment', self.value, indent, singleline, braces, )
@property def bibtype(self): """Return the entry type of this entry.""" return 'comment' @property def bibkey(self): """Return the key of this entry.""" return None @property def fields(self): """Return a list of this entry's active bib(la)tex fields. Active fields are fields that are not None or empty strings. """ return [] @property def value(self): """Return the value of the variable of the preamble.""" return self._value @value.setter def value(self, new_value): self._value = new_value
[docs] def aliases(self, format): """Return any aliases of this entry.""" return []
[docs] def valid(self, format): """Return True if all required fields are present, False otherwise.""" # Comment entries only exist in bibtex return format == 'bibtex'
def __eq__(self, other): return isinstance(other, Comment) and self.value == other.value def __contains__(self, item): """Check if an item is in the comment text.""" return item in self.value def __getitem__(self, field): raise AttributeError(field) def __iter__(self): yield (None, self.value) def __len__(self): # There is only ever one value in a comment: Its contents return 1 def __repr__(self): return "Comment(value=\"{0}\")".format(self.value)