Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 6 days 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 (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-12-09T08:26:44.000Z (2 months ago)
- Last Synced: 2025-01-25T14:06:52.202Z (13 days ago)
- Topics: csv, icalendar, python
- Language: Python
- Homepage:
- Size: 116 KB
- Stars: 60
- Watchers: 4
- Forks: 34
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: MIT-LICENSE.txt
Awesome Lists containing this project
README
# CSV/iCal Converter
[![PyPI](https://img.shields.io/pypi/v/csv-ical)](https://pypi.org/project/csv-ical/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/csv-ical)
![PyPI - License](https://img.shields.io/pypi/l/csv-ical)[![Build Status](https://drone.albertyw.com/api/badges/albertyw/csv-ical/status.svg)](https://drone.albertyw.com/albertyw/csv-ical)
[![Code Climate](https://codeclimate.com/github/albertyw/csv-ical/badges/gpa.svg)](https://codeclimate.com/github/albertyw/csv-ical)
[![Test Coverage](https://codeclimate.com/github/albertyw/csv-ical/badges/coverage.svg)](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
```