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

Method to_atom_string

src/pendulum/datetime.py:383–387  ·  view source on GitHub ↗

Format the instance as ATOM.

(self)

Source from the content-addressed store, hash-verified

381 return self.format("ddd, MMM D, YYYY h:mm A", locale="en")
382
383 def to_atom_string(self) -> str:
384 """
385 Format the instance as ATOM.
386 """
387 return self._to_string("atom")
388
389 def to_cookie_string(self) -> str:
390 """

Callers 2

test_to_stringsFunction · 0.80
test_to_atom_stringFunction · 0.80

Calls 1

_to_stringMethod · 0.95

Tested by 2

test_to_stringsFunction · 0.64
test_to_atom_stringFunction · 0.64