https://github.com/alice1017/icalwage
The icalwage computes .ics file and output .csv file
https://github.com/alice1017/icalwage
Last synced: about 2 months ago
JSON representation
The icalwage computes .ics file and output .csv file
- Host: GitHub
- URL: https://github.com/alice1017/icalwage
- Owner: alice1017
- Created: 2012-12-20T05:03:47.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2017-07-20T23:49:54.000Z (almost 8 years ago)
- Last Synced: 2025-02-15T08:25:55.405Z (3 months ago)
- Language: Python
- Homepage:
- Size: 77.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Icalwage - ics to csv
The **icalwage** computes `.ics` file and output `.csv` file.
## usage
```txt
usage: icalwage.py [-h] [-o] [--month MONTH] [--year YEAR] [--from FULL DATE]
[--to FULL DATE]
ICS FILE CSV FILELoad calender data from an .ics file, and Output .csv file.
positional arguments:
ICS FILE The '.ics' file, this file needed to load work
informations.
CSV FILE A file name contains csv data.optional arguments:
-h, --help show this help message and exit
-o, --overwrite If dest csv file is already exist, overwrite that file.
--month MONTH Returns the month data only, use this when ics file is
heavy. Please set integer not string. ok: '6' no: 'June'
--year YEAR Returns the year data only. Please set christian era. ok:
'1989' no: '89'
--from FULL DATE If you want to limit the range of a date, use this
argument with '--to' arg. Please set full date. ok:
'2017.9.1' no: '9.1'
--to FULL DATE If you set '--from' argument, please set this argument.
```