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

Method in_days

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

Source from the content-addressed store, hash-verified

227 return int(self.total_weeks())
228
229 def in_days(self) -> int:
230 return int(self.total_days())
231
232 def in_hours(self) -> int:
233 return int(self.total_hours())

Calls 1

total_daysMethod · 0.95