Giter VIP home page Giter VIP logo

ical2csv's People

Contributors

erikcox avatar martinm76 avatar tedsteinmann avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

ical2csv's Issues

May this script do not support Chinese and other not-English language?

('Extracting events from file:', 'rili.ics', '\n')
Traceback (most recent call last):
File "ical2csv.py", line 87, in
csv_write(filename)
File "ical2csv.py", line 69, in csv_write
wr.writerow(values)
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-6: ordinal not in range(128)

TypeError when converting to csv

I exported my ical calendar and then tried to use ical2csv and got the following error:

Traceback (most recent call last):
File "ical2csv.py", line 90, in
sortedevents=sorted(events, key=lambda obj: obj.start) # Needed to sort events. They are not fully chronological in a Google Calendard export ...
TypeError: can't compare datetime.datetime to datetime.date

Type Error ical2txt

I tried ical2txt limiting it to a 14 day period and got:

Processing events : Traceback (most recent call last):
File "ical2txt.py", line 176, in
txt_write(filename) # Write the matching events to the textfile. With recurring_ical_events, scoping is already done.
File "ical2txt.py", line 127, in txt_write
if event.location != '': values = values + " [" + event.location + "]" # Only include location if there is one
TypeError: can only concatenate str (not "NoneType") to str

WIthout the date limit, I got the same Type Error as with ical2csv.

ical2txt.py doesn't work without start and end time

Hi,
thanks for writing this tool.

I get the following error:

python3 ical2txt.py export.ics    
Extracting events from file: export.ics 

Traceback (most recent call last):
  File "ical2txt.py", line 156, in <module>
    txt_write(filename)
  File "ical2txt.py", line 96, in txt_write
    if sys.argv[2] != '':
IndexError: list index out of range

It works when I use start and end dates:
python3 ical2txt.py export.ics 2021-05-01 2021-05-31

Would also be nice to mention this option in the readme.

Quickfix:

    if len(sys.argv) > 3:
        if sys.argv[2] != '':
            istart=parse(sys.argv[2]).timestamp()
        if sys.argv[3] != '':
            istop=parse(sys.argv[3]).timestamp()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.