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

Method in_weeks

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

Source from the content-addressed store, hash-verified

224 return self._invert
225
226 def in_weeks(self) -> int:
227 return int(self.total_weeks())
228
229 def in_days(self) -> int:
230 return int(self.total_days())

Calls 1

total_weeksMethod · 0.95