MCPcopy Index your code
hub / github.com/python-pendulum/pendulum / in_seconds

Method in_seconds

src/pendulum/duration.py:238–239  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

236 return int(self.total_minutes())
237
238 def in_seconds(self) -> int:
239 return int(self.total_seconds())
240
241 def in_words(self, locale: str | None = None, separator: str = " ") -> str:
242 """

Callers 15

averageMethod · 0.80
closestMethod · 0.80
farthestMethod · 0.80
closestMethod · 0.80
farthestMethod · 0.80
test_in_secondsFunction · 0.80

Calls 1

total_secondsMethod · 0.95