All Projects → emersion → go-vcard

emersion / go-vcard

Licence: MIT license
A Go library to parse and format vCard

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to go-vcard

laravel-vcard
A fluent builder class for vCard files.
Stars: ✭ 29 (-66.67%)
Mutual labels:  contacts, vcard
csv2vcf
🔧 Simple script in python to convert CSV files to VCF
Stars: ✭ 66 (-24.14%)
Mutual labels:  contacts, vcard
tsdav
WebDAV, CALDAV, and CARDDAV client for Nodejs and the Browser
Stars: ✭ 33 (-62.07%)
Mutual labels:  contacts, vcard
Q Municate Services Ios
Easy-to-use services for Quickblox SDK, for speeding up development of iOS chat applications
Stars: ✭ 30 (-65.52%)
Mutual labels:  contacts
Whatsup
**Deprecated** Real time chat app written in Swift 4 using Firebase and OTP Authentication
Stars: ✭ 39 (-55.17%)
Mutual labels:  contacts
Privacy services manager
A single management utility to administer Location Services, Contacts requests, Accessibility, and iCloud access in Apple's OS X.
Stars: ✭ 115 (+32.18%)
Mutual labels:  contacts
Wechat
🔥 iOS 利用MVVM + RAC + ViewModel-Based Navigation来搭建微信(WeChat 7.0.0+)的整体基本架构,以及实现微信朋友圈、通讯录、下拉小程序、搜索等主要功能,代码规范惊为天人、注释详解令人发指、细节处理精益求精、核心功能配备文档、接近98%还原度的原生App视觉体验,代码不多,注释多。(持续更新,敬请期待,欢迎Star和Fork…)
Stars: ✭ 870 (+900%)
Mutual labels:  contacts
Suitecrm
SuiteCRM - Open source CRM for the world
Stars: ✭ 2,770 (+3083.91%)
Mutual labels:  contacts
Decsynccc
Android app to sync contacts, calendars and tasks without a server using DecSync
Stars: ✭ 101 (+16.09%)
Mutual labels:  contacts
React Native Contacts
React Native Contacts
Stars: ✭ 1,369 (+1473.56%)
Mutual labels:  contacts
Memento Calendar
The sweetest calendar for Android
Stars: ✭ 212 (+143.68%)
Mutual labels:  contacts
Contacts
A flutter project with Implementation of a Contacts app in 4 ways (API, Custom, Preferences and Sqflite).
Stars: ✭ 100 (+14.94%)
Mutual labels:  contacts
Yetiforcecrm
Our team created for you one of the most innovative CRM systems that supports mainly business processes and allows for customization according to your needs. Be ahead of your competition and implement YetiForce!
Stars: ✭ 1,056 (+1113.79%)
Mutual labels:  contacts
React Native Unified Contacts
Your best friend when working with the latest and greatest Contacts Framework in iOS 9+ in React Native.
Stars: ✭ 156 (+79.31%)
Mutual labels:  contacts
Flutter Contacts Plugin
Contact plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API to read, create and update contacts from the address book.
Stars: ✭ 38 (-56.32%)
Mutual labels:  contacts
Ljcontactmanager
LJContanctManager 是一款操作通讯录的类库
Stars: ✭ 226 (+159.77%)
Mutual labels:  contacts
Vdirsyncer
📇 Synchronize calendars and contacts.
Stars: ✭ 872 (+902.3%)
Mutual labels:  contacts
Django Contacts
A Django address book application.
Stars: ✭ 103 (+18.39%)
Mutual labels:  contacts
vcard2to3
Convert vcards from version 2.1 to version 3.0
Stars: ✭ 135 (+55.17%)
Mutual labels:  vcard
React Native Paged Contacts
Paged contacts for React Native
Stars: ✭ 79 (-9.2%)
Mutual labels:  contacts

go-vcard

godocs.io builds.sr.ht status

A Go library to parse and format vCard.

Usage

f, err := os.Open("cards.vcf")
if err != nil {
	log.Fatal(err)
}
defer f.Close()

dec := vcard.NewDecoder(f)
for {
	card, err := dec.Decode()
	if err == io.EOF {
		break
	} else if err != nil {
		log.Fatal(err)
	}

	log.Println(card.PreferredValue(vcard.FieldFormattedName))
}

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].