(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| import vobject | |
| import csv | |
| with open('sample.csv', mode='w') as csv_out: | |
| csv_writer = csv.writer(csv_out, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL) | |
| csv_writer.writerow(['WHAT', 'WHO', 'FROM', 'TO', 'DESCRIPTION']) | |
| # read the data from the file | |
| data = open("sample.ics").read() |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.