File: index.html

package info (click to toggle)
python-vobject 0.9.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 836 kB
  • sloc: python: 6,317; sh: 7; makefile: 4
file content (1008 lines) | stat: -rw-r--r-- 50,232 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
<!DOCTYPE html>
<html lang="en-us">
  <head>
    <meta charset="UTF-8">
    <title>VObject by eventable</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
    <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
    <link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
  </head>
  <body>
    <section class="page-header">
      <h1 class="project-name">VObject</h1>
      <h2 class="project-tagline">A full-featured Python package for parsing and creating iCalendar and vCard files</h2>
      <a href="https://github.com/eventable/vobject" class="btn">View on GitHub</a>
      <a href="https://github.com/eventable/vobject/zipball/master" class="btn">Download .zip</a>
      <a href="https://github.com/eventable/vobject/tarball/master" class="btn">Download .tar.gz</a>
    </section>

    <section class="main-content">
      <h1>
<a id="about-vobject" class="anchor" href="#about-vobject" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>About VObject</h1>

<p>VObject is intended to be a full-featured Python package for parsing and generating vCard and vCalendar files. It was originally developed in concert with the Open Source Application Foundation's Chandler project by Jeffrey Harris. Many thanks to <a href="https://github.com/eventable/vobject/blob/master/ACKNOWLEDGEMENTS.txt">all the contributors</a> for their dedication and support. The project is currently being maintained by <a href="https://github.com/eventable">Eventable</a> and <a href="https://github.com/skarim">Sameen Karim</a>.</p>

<p>Currently, iCalendar files are supported and well tested. vCard 3.0 files are supported, and all data should be imported, but only a few components are understood in a sophisticated way. The <a href="http://calendarserver.org/">Calendar Server</a> team has added VAVAILABILITY support to VObject's iCalendar parsing. Please report bugs and issues directly on <a href="https://github.com/eventable/vobject/issues">GitHub</a>.</p>

<p>VObject is licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0 license</a>. <a href="http://www.apache.org/licenses/LICENSE-2.0.html"><img src="https://img.shields.io/pypi/l/vobject.svg" alt="License"></a></p>

<p>Useful scripts included with VObject:</p>

<ul>
<li>
<a href="https://github.com/eventable/vobject/blob/master/vobject/ics_diff.py">ics_diff</a>: order is irrelevant in iCalendar files, return a diff of meaningful changes between icalendar files</li>
<li>
<a href="https://github.com/eventable/vobject/blob/master/vobject/change_tz.py">change_tz</a>: Take an iCalendar file with events in the wrong timezone, change all events or just UTC events into one of the timezones PyICU supports. Requires <a href="https://pypi.python.org/pypi/PyICU/">PyICU</a>.</li>
</ul>

<h1>
<a id="installation-" class="anchor" href="#installation-" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Installation <a href="https://pypi.python.org/pypi/vobject"><img src="https://badge.fury.io/py/vobject.svg" alt="PyPI version"></a>
</h1>

<p>To install with <a href="https://pypi.python.org/pypi/pip">pip</a>, run:</p>

<pre><code>pip install vobject
</code></pre>

<p>Or download the package and run:</p>

<pre><code>python setup.py install
</code></pre>

<p>VObject requires Python 2.7 or higher, along with the <a href="https://pypi.python.org/pypi/python-dateutil/">dateutil</a> and <a href="https://pypi.python.org/pypi/six">six</a> packages.</p>

<h1>
<a id="running-tests-" class="anchor" href="#running-tests-" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Running tests <a href="https://travis-ci.org/eventable/vobject"><img src="https://travis-ci.org/eventable/vobject.svg?branch=master" alt="Build Status"></a>
</h1>

<p>To run all tests, use:</p>

<pre><code>python tests/tests.py
</code></pre>

<h1>
<a id="usage" class="anchor" href="#usage" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Usage</h1>

<h2>
<a id="icalendar" class="anchor" href="#icalendar" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>iCalendar</h2>

<h4>
<a id="creating-icalendar-objects" class="anchor" href="#creating-icalendar-objects" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Creating iCalendar objects</h4>

<p>VObject has a basic datastructure for working with iCalendar-like
syntaxes.  Additionally, it defines specialized behaviors for many of
the commonly used iCalendar objects.</p>

<p>To create an object that already has a behavior defined, run:</p>

<pre><code>&gt;&gt;&gt; import vobject
&gt;&gt;&gt; cal = vobject.newFromBehavior('vcalendar')
&gt;&gt;&gt; cal.behavior
&lt;class 'vobject.icalendar.VCalendar2_0'&gt;
</code></pre>

<p>Convenience functions exist to create iCalendar and vCard objects:</p>

<pre><code>&gt;&gt;&gt; cal = vobject.iCalendar()
&gt;&gt;&gt; cal.behavior
&lt;class 'vobject.icalendar.VCalendar2_0'&gt;
&gt;&gt;&gt; card = vobject.vCard()
&gt;&gt;&gt; card.behavior
&lt;class 'vobject.vcard.VCard3_0'&gt;
</code></pre>

<p>Once you have an object, you can use the add method to create
children:</p>

<pre><code>&gt;&gt;&gt; cal.add('vevent')
&lt;VEVENT| []&gt;
&gt;&gt;&gt; cal.vevent.add('summary').value = "This is a note"
&gt;&gt;&gt; cal.prettyPrint()
 VCALENDAR
    VEVENT
       SUMMARY: This is a note
</code></pre>

<p>Note that summary is a little different from vevent, it's a
ContentLine, not a Component.  It can't have children, and it has a
special value attribute.</p>

<p>ContentLines can also have parameters.  They can be accessed with
regular attribute names with <code>_param</code> appended:</p>

<pre><code>&gt;&gt;&gt; cal.vevent.summary.x_random_param = 'Random parameter'
&gt;&gt;&gt; cal.prettyPrint()
 VCALENDAR
    VEVENT
       SUMMARY: This is a note
       params for  SUMMARY:
          X-RANDOM ['Random parameter']
</code></pre>

<p>There are a few things to note about this example</p>

<ul>
<li>The underscore in x_random is converted to a dash (dashes are
legal in iCalendar, underscores legal in Python)</li>
<li>X-RANDOM's value is a list.</li>
</ul>

<p>If you want to access the full list of parameters, not just the first,
use &lt;paramname&gt;_paramlist:</p>

<pre><code>&gt;&gt;&gt; cal.vevent.summary.x_random_paramlist
['Random parameter']
&gt;&gt;&gt; cal.vevent.summary.x_random_paramlist.append('Other param')
&gt;&gt;&gt; cal.vevent.summary
&lt;SUMMARY{'X-RANDOM': ['Random parameter', 'Other param']}This is a note&gt;
</code></pre>

<p>Similar to parameters, If you want to access more than just the first child of a Component, you can access the full list of children of a given name by appending _list to the attribute name:</p>

<pre><code>&gt;&gt;&gt; cal.add('vevent').add('summary').value = "Second VEVENT"
&gt;&gt;&gt; for ev in cal.vevent_list:
...     print ev.summary.value
This is a note
Second VEVENT
</code></pre>

<p>The interaction between the del operator and the hiding of the
underlying list is a little tricky, both <code>del cal.vevent</code> and
<code>del cal.vevent_list</code> delete all vevent children:</p>

<pre><code>&gt;&gt;&gt; first_ev = cal.vevent
&gt;&gt;&gt; del cal.vevent
&gt;&gt;&gt; cal
&lt;VCALENDAR| []&gt;
&gt;&gt;&gt; cal.vevent = first_ev
</code></pre>

<p>VObject understands Python's datetime module and tzinfo classes.</p>

<pre><code>&gt;&gt;&gt; import datetime
&gt;&gt;&gt; utc = vobject.icalendar.utc
&gt;&gt;&gt; start = cal.vevent.add('dtstart')
&gt;&gt;&gt; start.value = datetime.datetime(2006, 2, 16, tzinfo = utc)
&gt;&gt;&gt; first_ev.prettyPrint()
     VEVENT
        DTSTART: 2006-02-16 00:00:00+00:00
        SUMMARY: This is a note
        params for  SUMMARY:
           X-RANDOM ['Random parameter', 'Other param']
</code></pre>

<p>Components and ContentLines have serialize methods:</p>

<pre><code>&gt;&gt;&gt; cal.vevent.add('uid').value = 'Sample UID'
&gt;&gt;&gt; icalstream = cal.serialize()
&gt;&gt;&gt; print icalstream
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//PYVOBJECT//NONSGML Version 1//EN
BEGIN:VEVENT
UID:Sample UID
DTSTART:20060216T000000Z
SUMMARY;X-RANDOM=Random parameter,Other param:This is a note
END:VEVENT
END:VCALENDAR
</code></pre>

<p>Observe that serializing adds missing required lines like version and
prodid.  A random UID would be generated, too, if one didn't exist.</p>

<p>If dtstart's tzinfo had been something other than UTC, an appropriate
vtimezone would be created for it.</p>

<h4>
<a id="parsing-icalendar-objects" class="anchor" href="#parsing-icalendar-objects" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Parsing iCalendar objects</h4>

<p>To parse one top level component from an existing iCalendar stream or
string, use the readOne function:</p>

<pre><code>&gt;&gt;&gt; parsedCal = vobject.readOne(icalstream)
&gt;&gt;&gt; parsedCal.vevent.dtstart.value
datetime.datetime(2006, 2, 16, 0, 0, tzinfo=tzutc())
</code></pre>

<p>Similarly, readComponents is a generator yielding one top level component at a time from a stream or string.</p>

<pre><code>&gt;&gt;&gt; vobject.readComponents(icalstream).next().vevent.dtstart.value
datetime.datetime(2006, 2, 16, 0, 0, tzinfo=tzutc())
</code></pre>

<p>More examples can be found in source code doctests.</p>

<h2>
<a id="vcards" class="anchor" href="#vcards" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>vCards</h2>

<h4>
<a id="creating-vcard-objects" class="anchor" href="#creating-vcard-objects" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Creating vCard objects</h4>

<p>Making vCards proceeds in much the same way. Note that the 'FN' attribute is required.</p>

<pre><code>&gt;&gt;&gt; j = vobject.vCard()
&gt;&gt;&gt; j.add('n')
 &lt;N{}    &gt;
&gt;&gt;&gt; j.n.value = vobject.vcard.Name( family='Harris', given='Jeffrey' )
&gt;&gt;&gt; j.add('fn')
 &lt;FN{}&gt;
&gt;&gt;&gt; j.fn.value ='Jeffrey Harris'
&gt;&gt;&gt; j.add('email')
 &lt;EMAIL{}&gt;
&gt;&gt;&gt; j.email.value = 'jeffrey@osafoundation.org'
&gt;&gt;&gt; j.email.type_param = 'INTERNET'
&gt;&gt;&gt; j.prettyPrint()
 VCARD
    EMAIL: jeffrey@osafoundation.org
    params for  EMAIL:
       TYPE ['INTERNET']
    FN: Jeffrey Harris
    N:  Jeffrey  Harris
</code></pre>

<p>serializing will add any required computable attributes (like 'VERSION')</p>

<pre><code>&gt;&gt;&gt; j.serialize()
'BEGIN:VCARD\r\nVERSION:3.0\r\nEMAIL;TYPE=INTERNET:jeffrey@osafoundation.org\r\nFN:Jeffrey Harris\r\nN:Harris;Jeffrey;;;\r\nEND:VCARD\r\n'
&gt;&gt;&gt; j.prettyPrint()
 VCARD
    VERSION: 3.0
    EMAIL: jeffrey@osafoundation.org
    params for  EMAIL:
       TYPE ['INTERNET']
    FN: Jeffrey Harris
    N:  Jeffrey  Harris 
</code></pre>

<h4>
<a id="parsing-vcard-objects" class="anchor" href="#parsing-vcard-objects" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Parsing vCard objects</h4>

<pre><code>&gt;&gt;&gt; s = """
... BEGIN:VCARD
... VERSION:3.0
... EMAIL;TYPE=INTERNET:jeffrey@osafoundation.org
... FN:Jeffrey Harris
... N:Harris;Jeffrey;;;
... END:VCARD
... """
&gt;&gt;&gt; v = vobject.readOne( s )
&gt;&gt;&gt; v.prettyPrint()
 VCARD
    VERSION: 3.0
    EMAIL: jeffrey@osafoundation.org
    params for  EMAIL:
       TYPE [u'INTERNET']
    FN: Jeffrey Harris
    N:  Jeffrey  Harris
&gt;&gt;&gt; v.n.value.family
u'Harris'
</code></pre>

<h2>
<a id="multi-value-props" class="anchor" href="#multi-value-props" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Multi-Value Properties</h2>

<p>Multi-value properties are properties of a component that can contain multiple values. An easy example would be email. A vCard can contain both someone's work email address and their home email address.
When dealing with multi-value properties, the getting and setting of values happens slightly differentely than singleton properties.</p>

<h4>
<a id="multi-value-add" class="anchor" href="#multi-value-add" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Adding Multi-Value Properties</h4>

<p>You should add multi-value properties by creating multiple ContentLines and giving each a value. You can also set the property list explicitly, but this is not advised.</p>
<pre><code>&gt;&gt;&gt; v = vobject.vCard()
&gt;&gt;&gt; v.add('fn').value = "Jeffery Harris"
&gt;&gt;&gt; v.add('email').value = 'jeffrey@osafoundation.org'
&gt;&gt;&gt; v.add('email').value = 'jeffrey@example.com'
&gt;&gt;&gt; print v.email_list
 [&lt;EMAIL{}jeffrey@osafoundation.org&gt;, &lt;EMAIL{}jeffery@example.com&gt;]
&gt;&gt;&gt; print v.serialize()
 BEGIN:VCARD
 VERSION:3.0
 EMAIL:jeffrey@osafoundation.org
 EMAIL:jeffery@example.com
 FN:Jeffery Harris
 END:VCARD
</code></pre>

<h4>
<a id="multi-value-access" class="anchor" href="#multi-value-access" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Accessing Multi-Value Properties</h4>

<p>You can access multi-value entries either by grabbing the relevent entry in the `contents` dictionary or by directly accessing the attribute and appending <code>_list</code> to the property name.</p>
<pre><code>&gt;&gt;&gt; s = """
... BEGIN:VCARD
... VERSION:3.0
... EMAIL;TYPE=INTERNET:jeffrey@osafoundation.org
... FN:Jeffrey Harris
... N:Harris;Jeffrey;;;
... TEL;TYPE=WORK,VOICE:(111) 555-1212
... TEL;TYPE=HOME,VOICE:(404) 555-1212
... END:VCARD
... """
&gt;&gt;&gt; v = vobject.readOne( s )
&gt;&gt;&gt; for tel in v.contents['tel']:
...     print tel
 &lt;TEL{u'TYPE': [u'WORK', u'VOICE']}(111) 555-1212&gt;
 &lt;TEL{u'TYPE': [u'HOME', u'VOICE']}(404) 555-1212&gt;
&gt;&gt;&gt; for tel in v.contents['tel']:
...     print tel.value
 (111) 555-1212
 (404) 555-1212
&gt;&gt;&gt; v.tel_list
 [&lt;TEL{'TYPE': ['WORK', 'VOICE']}(111) 555-1212&gt;,
  &lt;TEL{'TYPE': ['HOME', 'VOICE']}(404) 555-1212&gt;]
</code></pre>

<h1>
<a id="release-history" class="anchor" href="#release-history" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release History</h1>

<h3>
<a id="7-july-2018" class="anchor" href="#7-july-2018" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>7 July 2018</h3>

<p><strong>vobject 0.9.6</strong> released (<a href="https://github.com/eventable/vobject/releases/tag/0.9.6">view</a>).</p>

<p>To install, use <code>pip install vobject</code>, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="https://pypi.org/project/python-dateutil/">dateutil</a> and <a href="https://pypi.org/project/six">six</a> are required. Python 2.7 or higher is required.</p>

<h5>
<a id="release-notes" class="anchor" href="#release-notes" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Correctly order calendar properties before calendar components</li>
<li>  Correctly serialize timestamp values (i.e. `REV`)</li>
<li>  Pass correct formatting string to logger</li>
<li>  RRULE: Fix floating UNTIL with dateutil > 2.6.1</li>
<li>  Encode params if necessary in serialization</li>
<li>  Ignore escaped semi-colons in UNTIL value</li>
<li>  RRULE: Fix VTODO without DTSTART</li>
<li>  Fixed regexp for VCF Version 2.1</li>
<li>  repr() changed for datetime.timedelta in python 3.7</li>
</ul>

<hr>

<h3>
<a id="29-june-2017" class="anchor" href="#29-june-2017" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>29 June 2017</h3>

<p><strong>vobject 0.9.5</strong> released (<a href="https://github.com/eventable/vobject/releases/tag/0.9.5">view</a>).</p>

<p>To install, use <code>pip install vobject</code>, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="https://pypi.python.org/pypi/python-dateutil/">dateutil</a> and <a href="https://pypi.python.org/pypi/six">six</a> are required. Python 2.7 or higher is required.</p>

<h5>
<a id="release-notes" class="anchor" href="#release-notes" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Make ics_diff.py work with Python 3</li>
<li>  Huge changes to text encoding for Python 2/3 compatibility</li>
<li>  Autogenerate DTSTAMP if not provided</li>
<li>  Fix getrruleset() for Python 3 and in the case that addRDate=True</li>
<li>  Update vCard property validation to match specifications</li>
<li>  Handle offset-naive and offset-aware datetimes in recurrence rules</li>
<li>  Improved documentation for multi-value properties</li>
</ul>

<hr>

<h3>
<a id="22-january-2017" class="anchor" href="#22-january-2017" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>22 January 2017</h3>

<p><strong>vobject 0.9.4.1</strong> released (<a href="https://github.com/eventable/vobject/releases/tag/0.9.4.1">view</a>).</p>

<p>To install, use <code>pip install vobject</code>, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="https://pypi.python.org/pypi/python-dateutil/">dateutil</a> and <a href="https://pypi.python.org/pypi/six">six</a> are required. Python 2.7 or higher is required.</p>

<h5>
<a id="release-notes" class="anchor" href="#release-notes" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Pickling/deepcopy hotfix</li>
</ul>

<hr>

<h3>
<a id="20-january-2017" class="anchor" href="#20-january-2017" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>20 January 2017</h3>

<p><strong>vobject 0.9.4</strong> released (<a href="https://github.com/eventable/vobject/releases/tag/0.9.4">view</a>).</p>

<p>To install, use <code>pip install vobject</code>, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="https://pypi.python.org/pypi/python-dateutil/">dateutil</a> and <a href="https://pypi.python.org/pypi/six">six</a> are required. Python 2.7 or higher is required.</p>

<h5>
<a id="release-notes" class="anchor" href="#release-notes" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Improved PEP8 compliance</li>
<li>  Improved Python 3 compatibility</li>
<li>  Improved encoding/decoding</li>
<li>  Correct handling of pytz timezones</li>
</ul>

<hr>

<h3>
<a id="26-august-2016" class="anchor" href="#26-august-2016" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>26 August 2016</h3>

<p><strong>vobject 0.9.3</strong> released (<a href="https://github.com/eventable/vobject/releases/tag/0.9.3">view</a>).</p>

<p>To install, use <code>pip install vobject</code>, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="https://pypi.python.org/pypi/python-dateutil/">dateutil</a> and <a href="https://pypi.python.org/pypi/six">six</a> are required. Python 2.7 or higher is required.</p>

<h5>
<a id="release-notes" class="anchor" href="#release-notes" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Fixed use of doc in setup.py for -OO mode</li>
<li>  Added python3 compatibility for base64 encoding</li>
<li>  Fixed ORG fields with multiple components</li>
<li>  Handle pytz timezones in iCalendar serialization</li>
<li>  Use logging instead of printing to stdout</li>
</ul>

<hr>

<h3>
<a id="13-march-2016" class="anchor" href="#13-march-2016" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>13 March 2016</h3>

<p><strong>vobject 0.9.2</strong> released (<a href="https://github.com/eventable/vobject/releases/tag/0.9.2">view</a>).</p>

<p>To install, use <code>pip install vobject</code>, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="https://pypi.python.org/pypi/python-dateutil/">dateutil</a> and <a href="https://pypi.python.org/pypi/six">six</a> are required. Python 2.7 or higher is required.</p>

<h5>
<a id="release-notes-1" class="anchor" href="#release-notes-1" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Better line folding for utf-8 strings</li>
<li>  Convert unicode to utf-8 to be StringIO compatible</li>
</ul>

<hr>

<h3>
<a id="16-february-2016" class="anchor" href="#16-february-2016" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>16 February 2016</h3>

<p><strong>vobject 0.9.1</strong> released (<a href="https://github.com/eventable/vobject/releases/tag/0.9.1">view</a>).</p>

<p>To install, use <code>pip install vobject</code>, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="https://pypi.python.org/pypi/python-dateutil/">dateutil</a> and <a href="https://pypi.python.org/pypi/six">six</a> are required. Python 2.7 or higher is now required.</p>

<h5>
<a id="release-notes-2" class="anchor" href="#release-notes-2" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Removed lock on dateutil version (&gt;=2.4.0 now works)</li>
</ul>

<hr>

<h3>
<a id="3-february-2016" class="anchor" href="#3-february-2016" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>3 February 2016</h3>

<p><strong>vobject 0.9.0</strong> released (<a href="https://github.com/eventable/vobject/releases/tag/0.9.0">view</a>).</p>

<p>To install, use <code>pip install vobject</code>, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="https://pypi.python.org/pypi/python-dateutil/">dateutil 2.4.0</a> and <a href="https://pypi.python.org/pypi/six">six</a> are required. Python 2.7 or higher is now required.</p>

<h5>
<a id="release-notes-3" class="anchor" href="#release-notes-3" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Python 3 compatible</li>
<li>  Updated version of dateutil (2.4.0)</li>
<li>  More comprehensive unit tests available in tests.py</li>
<li>  Performance improvements in iteration</li>
<li>  Test files are included in PyPI download package</li>
</ul>

<hr>

<h3>
<a id="28-january-2016" class="anchor" href="#28-january-2016" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>28 January 2016</h3>

<p><strong>vobject 0.8.2</strong> released (<a href="https://github.com/eventable/vobject/releases/tag/0.8.2">view</a>).</p>

<p>To install, use <code>pip install vobject</code>, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-4" class="anchor" href="#release-notes-4" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Removed unnecessary ez_setup call from setup.py</li>
</ul>

<hr>

<h3>
<a id="27-february-2009" class="anchor" href="#27-february-2009" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>27 February 2009</h3>

<p><strong>vobject 0.8.1c</strong> released (SVN revision 217).</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-5" class="anchor" href="#release-notes-5" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Tweaked change_tz.py to keep it 2.4 compatible</li>
</ul>

<hr>

<h3>
<a id="12-january-2009" class="anchor" href="#12-january-2009" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>12 January 2009</h3>

<p><strong>vobject 0.8.1b</strong> released (SVN revision 216).</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-6" class="anchor" href="#release-notes-6" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Change behavior when import a VCALENDAR or VCARD with an older or absent VERSION line, now the most recent behavior (i.e., VCARD 3.0 and iCalendar, VCALENDAR 2.0) is used</li>
</ul>

<hr>

<h3>
<a id="29-december-2008" class="anchor" href="#29-december-2008" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>29 December 2008</h3>

<p><strong>vobject 0.8.0</strong> released (SVN revision 213).</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-7" class="anchor" href="#release-notes-7" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Changed license to Apache 2.0 from Apache 1.1</li>
<li>  Fixed a major performance bug in backslash decoding large text bodies</li>
<li>  Added workaround for strange Apple Address Book parsing of vcard PHOTO, don't wrap PHOTO by default. To disable this behavior, set vobject.vcard.wacky_apple_photo_serialize to False.</li>
</ul>

<hr>

<h3>
<a id="25-july-2008" class="anchor" href="#25-july-2008" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>25 July 2008</h3>

<p><strong>vobject 0.7.1</strong> released (SVN revision 208).</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-8" class="anchor" href="#release-notes-8" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Add change_tz script for converting timezones in iCalendar files</li>
</ul>

<hr>

<h3>
<a id="16-july-2008" class="anchor" href="#16-july-2008" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>16 July 2008</h3>

<p><strong>vobject 0.7.0</strong> released (SVN revision 206).</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-9" class="anchor" href="#release-notes-9" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Allow Outlook's technically illegal use of commas in TZIDs</li>
<li>  Added introspection help for IPython so tab completion works with vobject's custom <strong>getattr</strong>
</li>
<li>  Made vobjects pickle-able</li>
<li>  Added tolerance for the escaped semi-colons in RRULEs a Ruby iCalendar library generates</li>
<li>  Fixed <a href="https://bugzilla.osafoundation.org/show_bug.cgi?id=12245">Bug 12245</a>, setting an rrule from a dateutil instance missed BYMONTHDAY when the number used is negative</li>
</ul>

<hr>

<h3>
<a id="30-may-2008" class="anchor" href="#30-may-2008" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>30 May 2008</h3>

<p><strong>vobject 0.6.6</strong> released (SVN revision 201).</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-10" class="anchor" href="#release-notes-10" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Fixed <a href="https://bugzilla.osafoundation.org/show_bug.cgi?id=12120">bug 12120</a>, unicode TZIDs were failing to parse.</li>
</ul>

<hr>

<h3>
<a id="28-may-2008" class="anchor" href="#28-may-2008" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>28 May 2008</h3>

<p><strong>vobject 0.6.5</strong> released (SVN revision 200).</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. Tests can be run via python setup.py test. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-11" class="anchor" href="#release-notes-11" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Fixed <a href="https://bugzilla.osafoundation.org/show_bug.cgi?id=9814">bug 9814</a>, quoted-printable data wasn't being decoded into unicode, thanks to Ilpo Nyyssönen for the fix.</li>
<li>  Fixed <a href="https://bugzilla.osafoundation.org/show_bug.cgi?id=12008">bug 12008</a>, silently translate buggy Lotus Notes names with underscores into dashes.</li>
</ul>

<hr>

<h3>
<a id="21-february-2008" class="anchor" href="#21-february-2008" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>21 February 2008</h3>

<p><strong>vobject 0.6.0</strong> released (SVN revision 193).</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-12" class="anchor" href="#release-notes-12" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Added VAVAILABILITY support, thanks to the Calendar Server team.</li>
<li>  Improved unicode line folding.</li>
</ul>

<hr>

<h3>
<a id="14-january-2008" class="anchor" href="#14-january-2008" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>14 January 2008</h3>

<p><strong>vobject 0.5.0</strong> released (SVN revision 189).</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-13" class="anchor" href="#release-notes-13" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Updated to more recent ez_setup, vobject wasn't successfully installing.</li>
</ul>

<hr>

<h3>
<a id="19-november-2007" class="anchor" href="#19-november-2007" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>19 November 2007</h3>

<p><strong>vobject 0.4.9</strong> released (SVN revision 187).</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-14" class="anchor" href="#release-notes-14" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Tolerate invalid UNTIL values for recurring events</li>
<li>  Minor improvements to logging and tracebacks</li>
<li>  Fix serialization of zero-delta durations</li>
<li>  Treat different tzinfo classes that represent UTC as equal</li>
<li>  Added ORG behavior to vCard handling, native value for ORG is now a list.</li>
</ul>

<hr>

<h3>
<a id="7-january-2007" class="anchor" href="#7-january-2007" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>7 January 2007</h3>

<p><strong>vobject 0.4.8</strong> released (SVN revision 180).</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-15" class="anchor" href="#release-notes-15" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Fixed problem with the UNTIL time used when creating a dateutil rruleset.</li>
</ul>

<hr>

<h3>
<a id="21-december-2006" class="anchor" href="#21-december-2006" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>21 December 2006</h3>

<p><strong>vobject 0.4.7</strong> released (SVN revision 172), hot on the heals of yesterday's 0.4.6.</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-16" class="anchor" href="#release-notes-16" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Fixed a problem causing DATE valued RDATEs and EXDATEs to be ignored when interpreting recurrence rules</li>
<li>  And, from the short lived vobject 0.4.6, added an ics_diff module and an ics_diff command line script for comparing similar iCalendar files</li>
</ul>

<hr>

<h3>
<a id="20-december-2006" class="anchor" href="#20-december-2006" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>20 December 2006</h3>

<p><strong>vobject 0.4.6</strong> released (SVN revision 171)</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-17" class="anchor" href="#release-notes-17" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Added an ics_diff module and an ics_diff command line script for comparing similar iCalendar files</li>
</ul>

<hr>

<h3>
<a id="8-december-2006" class="anchor" href="#8-december-2006" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>8 December 2006</h3>

<p><strong>vobject 0.4.5</strong> released (SVN revision 168)</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-18" class="anchor" href="#release-notes-18" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Added ignoreUnreadable flag to readOne and readComponents</li>
<li>  Tolerate date-time or date fields incorrectly failing to set VALUE=DATE for date values</li>
<li>  Cause unrecognized lines to default to use a text behavior, so commas, carriage returns, and semi-colons are escaped properly in unrecognized lines</li>
</ul>

<hr>

<h3>
<a id="9-october-2006" class="anchor" href="#9-october-2006" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>9 October 2006</h3>

<p><strong>vobject 0.4.4</strong> released (SVN revision 159)</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 1.1 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-19" class="anchor" href="#release-notes-19" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Merged in Apple CalendarServer patches as of CalendarServer-r191</li>
<li>  Added copy and duplicate code to base module</li>
<li>  Improved recurring VTODO handling</li>
<li>  Save TZIDs when parsed and use them as back up TZIDs when serializing</li>
</ul>

<hr>

<h3>
<a id="22-september-2006" class="anchor" href="#22-september-2006" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>22 September 2006</h3>

<p><strong>vobject 0.4.3</strong> released (SVN revision 157)</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 0.9 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-20" class="anchor" href="#release-notes-20" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Added support for PyTZ tzinfo classes.</li>
</ul>

<hr>

<h3>
<a id="29-august-2006" class="anchor" href="#29-august-2006" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>29 August 2006</h3>

<p><strong>vobject 0.4.2</strong> released (SVN revision 153)</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 0.9 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-21" class="anchor" href="#release-notes-21" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Updated ez_setup.py to use the latest setuptools.</li>
</ul>

<hr>

<h3>
<a id="4-august-2006" class="anchor" href="#4-august-2006" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>4 August 2006</h3>

<p><strong>vobject 0.4.1</strong> released (SVN revision 152)</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 0.9 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-22" class="anchor" href="#release-notes-22" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  When vobject encounters ascii, it now tries utf-8, then utf-16 with either LE or BE byte orders, searching for BEGIN in the decoded string to determine if it's found an encoding match. readOne and readComponents will no longer work on arbitrary Versit style ascii streams unless the optional findBegin flag is set to False</li>
</ul>

<hr>

<h3>
<a id="2-august-2006" class="anchor" href="#2-august-2006" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>2 August 2006</h3>

<p><strong>vobject 0.4.0</strong> released (SVN revision 151)</p>

<p>To install, use easy_install, or download the archive and untar, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 0.9 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-23" class="anchor" href="#release-notes-23" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Workarounds for common invalid files produced by Apple's iCal and AddressBook</li>
<li>  Added getChildValue convenience method</li>
<li>  Added experimental hCalendar serialization</li>
<li>  Handle DATE valued EXDATE and RRULEs better</li>
</ul>

<hr>

<h3>
<a id="17-february-2006" class="anchor" href="#17-february-2006" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>17 February 2006</h3>

<p><strong>vobject 0.3.0</strong> released (SVN revision 129)</p>

<p>To install, untar the archive, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 0.9 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-24" class="anchor" href="#release-notes-24" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Changed API for accessing children and parameters, attributes now return the first child or parameter, not a list. See <a href="usage.html">usage</a> for examples</li>
<li>  Added support for groups, a vcard feature</li>
<li>  Added behavior for FREEBUSY lines</li>
<li>  Worked around problem with dateutil's treatment of experimental properties (bug 4978)</li>
<li>  Fixed bug 4992, problem with rruleset when addRDate is set</li>
</ul>

<hr>

<h3>
<a id="9-january-2006" class="anchor" href="#9-january-2006" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>9 January 2006</h3>

<p><strong>vobject 0.2.3</strong> released (SVN revision 104)</p>

<p>To install, untar the archive, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 0.9 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-25" class="anchor" href="#release-notes-25" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Added VERSION line back into native iCalendar objects</li>
<li>  Added a first stab at a vcard module, parsing of vCard 3.0 files now gives structured values for N and ADR properties</li>
<li>  Fix bug in regular expression causing the '^' character to not parse</li>
</ul>

<hr>

<h3>
<a id="4-november-2005" class="anchor" href="#4-november-2005" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>4 November 2005</h3>

<p><strong>vobject 0.2.2</strong> released (SVN revision 101)</p>

<p>To install, untar the archive, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 0.9 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-26" class="anchor" href="#release-notes-26" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Fixed problem with add('duration')</li>
<li>  Fixed serialization of EXDATEs which are dates or have floating timezone</li>
<li>  Fixed problem serializing timezones with no daylight savings time</li>
</ul>

<hr>

<h3>
<a id="10-october-2005" class="anchor" href="#10-october-2005" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>10 October 2005</h3>

<p><strong>vobject 0.2.0</strong> released (SVN revision 97)</p>

<p>To install, untar the archive, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 0.9 or later is required. Python 2.4 is also required.</p>

<h5>
<a id="release-notes-27" class="anchor" href="#release-notes-27" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Added serialization of arbitrary tzinfo classes as VTIMEZONEs</li>
<li>  Removed unused methods</li>
<li>  Changed getLogicalLines to use regular expressions, dramatically speeding it up</li>
<li>  Changed rruleset behavior to use a property for rruleset</li>
</ul>

<hr>

<h3>
<a id="30-september-2005" class="anchor" href="#30-september-2005" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>30 September 2005</h3>

<p><strong>vobject 0.1.4</strong> released (SVN revision 93)</p>

<p>To install, untar the archive, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 0.9 or later is required. As of this release, Python 2.4 is also required.</p>

<h5>
<a id="release-notes-28" class="anchor" href="#release-notes-28" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Changed parseLine to use regular expression instead of a state machine, reducing parse time dramatically</li>
</ul>

<hr>

<h3>
<a id="1-july-2005" class="anchor" href="#1-july-2005" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>1 July 2005</h3>

<p><strong>vobject 0.1.3</strong> released (SVN revision 88)</p>

<p>To install, untar the archive, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> 0.9 or later is required. As of this release, Python 2.4 is also required.</p>

<h5>
<a id="release-notes-29" class="anchor" href="#release-notes-29" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Added license and acknowledgements.</li>
<li>  Fixed the fact that defaultSerialize wasn't escaping linefeeds</li>
<li>  Updated backslashEscape to encode CRLF's and bare CR's as linefeeds, which seems to be what RFC2445 requires</li>
</ul>

<hr>

<h3>
<a id="24-march-2005" class="anchor" href="#24-march-2005" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>24 March 2005</h3>

<p><strong>vobject 0.1.2</strong> released (SVN revision 83)</p>

<p>To install, untar the archive, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> is required. You'll need to apply this <a href="dateutil-0.5-tzoffset-bug.patch">patch</a> to be able to read certain VTIMEZONEs exported by Apple iCal, or if you happen to be in Europe!</p>

<p>patch -R $PYTHONLIB/site-packages/dateutil/tz.py dateutil-0.5-tzoffset-bug.patch</p>

<h5>
<a id="release-notes-30" class="anchor" href="#release-notes-30" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Fixed printing of non-ascii unicode.</li>
<li>  Fixed bug preventing content lines with empty contents from parsing.</li>
</ul>

<hr>

<h3>
<a id="25-january-2005" class="anchor" href="#25-january-2005" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>25 January 2005</h3>

<p><strong>vobject 0.1.1</strong> released (SVN revision 82)</p>

<p>To install, untar the archive, run python setup.py install. <a href="http://labix.org/python-dateutil#head-2f49784d6b27bae60cde1cff6a535663cf87497b">dateutil</a> is required. You'll need to apply this <a href="dateutil-0.5-tzoffset-bug.patch">patch</a> to be able to read certain VTIMEZONEs exported by Apple iCal, or if you happen to be in Europe!</p>

<p>patch -R $PYTHONLIB/site-packages/dateutil/tz.py dateutil-0.5-tzoffset-bug.patch</p>

<h5>
<a id="release-notes-31" class="anchor" href="#release-notes-31" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Various bug fixes involving recurrence.</li>
<li>  TRIGGER and VALARM behaviors set up.</li>
</ul>

<hr>

<h3>
<a id="13-december-2004" class="anchor" href="#13-december-2004" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>13 December 2004</h3>

<p><strong>vobject 0.1</strong> released (SVN revision 70)</p>

<h5>
<a id="release-notes-32" class="anchor" href="#release-notes-32" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Release Notes</h5>

<ul>
<li>  Parsing all iCalendar files should be working, please <a href="bugs/">file a bug</a> if you can't read one!</li>
<li>  Timezones can be set for datetimes, but currently they'll be converted to UTC for serializing, because VTIMEZONE serialization isn't yet working.</li>
<li>  RRULEs can be parsed, but when they're serialized, they'll be converted to a maximum of 500 RDATEs, because RRULE serialization isn't yet working.</li>
<li>  To parse unicode, see <a href="http://vobject.skyhouseconsulting.com/bugs/issue4">issue 4</a>.</li>
<li>  Much more testing is needed, of course!</li>
</ul>

      <footer class="site-footer">
        <span class="site-footer-owner"><a href="https://github.com/eventable/vobject">VObject</a> is maintained by <a href="https://github.com/eventable">eventable</a>.</span>

        <span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the <a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a> by <a href="https://twitter.com/jasonlong">Jason Long</a>.</span>
      </footer>

    </section>

  
  </body>
</html>