From ee8d01c94090af41c60b1ec0b7d2de7d931ebd21 Mon Sep 17 00:00:00 2001 From: Abe Date: Mon, 19 Dec 2022 16:09:37 -0500 Subject: [PATCH] display file content of example --- docs/usage.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/usage.rst b/docs/usage.rst index 9d56359d..83349d17 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -317,6 +317,25 @@ Write to disk:: 522 >>> f.close() +The content of the file looks like this:: + + BEGIN:VCALENDAR + VERSION:2.0 + PRODID:-//My calendar product//mxm.dk// + BEGIN:VEVENT + SUMMARY:Python meeting about calendaring + DTSTART:20050404T080000Z + DTEND:20050404T100000Z + DTSTAMP:20050404T001000Z + UID:20050115T101010/27346262376@mxm.dk + ATTENDEE;CN="Max Rasmussen";ROLE=REQ-PARTICIPANT:MAILTO:maxm@example.com + ATTENDEE;CN="The Dude";ROLE=REQ-PARTICIPANT:MAILTO:the-dude@example.com + LOCATION:Odense\, Denmark + ORGANIZER;CN="Max Rasmussen";ROLE=CHAIR:MAILTO:noone@example.com + PRIORITY:5 + END:VEVENT + END:VCALENDAR + More documentation ==================