https://github.com/albertyw/csv-ical
A simple script to convert data in CSV format to iCal format
https://github.com/albertyw/csv-ical
csv icalendar python
Last synced: 3 months ago
JSON representation
A simple script to convert data in CSV format to iCal format
- Host: GitHub
- URL: https://github.com/albertyw/csv-ical
- Owner: albertyw
- License: mit
- Created: 2013-05-12T01:02:46.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2025-03-10T06:03:09.000Z (4 months ago)
- Last Synced: 2025-03-28T18:17:39.847Z (4 months ago)
- Topics: csv, icalendar, python
- Language: Python
- Homepage:
- Size: 118 KB
- Stars: 60
- Watchers: 4
- Forks: 36
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: MIT-LICENSE.txt
Awesome Lists containing this project
README
# CSV/iCal Converter
[](https://pypi.org/project/csv-ical/)

[](https://drone.albertyw.com/albertyw/csv-ical)
[](https://codeclimate.com/github/albertyw/csv-ical)
[](https://codeclimate.com/github/albertyw/csv-ical/coverage)A simple script to convert data in CSV format to iCal format and vice
versa.## Installation
```bash
pip install csv-ical
```## Usage
See the example files.
## Development
```bash
pip install -e .[test]
ruff check .
mypy . --strict --ignore-missing-imports
coverage run -m unittest
coverage report -m
```