• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-1,109732

khard/H13-Aug-2020-4,7313,871

khard.egg-info/H03-May-2022-10182

misc/H13-Aug-2020-574447

test/H13-Aug-2020-3,0512,440

.gitignoreH A D13-Aug-2020154 1211

.readthedocs.ymlH A D07-Apr-2020343 1312

.travis.ymlH A D07-Apr-2020591 3632

CHANGESH A D13-Aug-20209.3 KiB267192

CONTRIBUTING.rstH A D13-Aug-20202.8 KiB8063

LICENSEH A D18-Feb-201634.3 KiB675553

MANIFEST.inH A D13-Aug-2020114 54

PKG-INFOH A D13-Aug-20204.6 KiB10182

README.mdH A D07-Apr-20203.2 KiB7961

setup.cfgH A D13-Aug-202038 53

setup.pyH A D13-Aug-20201.6 KiB5140

README.md

1khard
2=====
3
4Khard is an address book for the Unix console. It creates, reads, modifies and
5removes carddav address book entries at your local machine. Khard is also
6compatible to the email clients mutt and alot and the SIP client twinkle. You
7can find more information about khard and the whole synchronization process
8[here][blog].
9
10Warning: If you want to create or modify contacts with khard, beware that the
11vcard standard is very inconsistent and lacks interoperability. Different
12actors in that sector have defined their own extensions and even produce
13non-standard output. A good example is the type value, which is tied to phone
14numbers, email and post addresses. Khard tries to avoid such incompatibilities
15but if you sync your contacts with an Android or iOS device, expect problems.
16You are on the safe side, if you only use khard to read contacts. For further
17information about the vcard compatibility issues have a look into [this blog
18post][sad].
19
20Installation
21------------
22
23[![Packaging status][repos-badge]][repos]
24
25Khard is already packaged for quite some distributions.  Chances are you can
26install it with your default package manager.  Releases are also published on
27[PyPi](https://pypi.org/project/khard/) and can be installed with `pip`.
28Further instructions can be found in the
29[documentation](https://khard.readthedocs.io/en/latest/#installation).
30
31Usage
32-----
33
34[![Documentation Status][docs-badge]][docs]
35
36There is an [example config file](doc/source/examples/khard.conf.example) which
37you can copy to the default config file location: `~/.config/khard/khard.conf`.
38`khard` has several subcommands which are all documented by their `--help`
39option. [The docs][docs] also have a chapter on [command line
40usage](https://khard.readthedocs.io/en/latest/commandline.html) and
41[configuration](https://khard.readthedocs.io/en/latest/#configuration).
42
43In order to build the documentation locally you need
44[Sphinx](https://www.sphinx-doc.org/).  It can be build from the Makefile in
45the `doc` directory.
46
47Development
48-----------
49
50[![Build Status][travis-badge]][travis]
51
52Khard is developed [on GitHub](https://github.com/scheibler/khard) where you
53are welcome to post [bug reports](https://github.com/scheibler/khard/issues)
54and [feature requests](https://github.com/scheibler/khard/pulls).  Also see the
55[notes for contributors](CONTRIBUTING.rst).
56
57Authors
58-------
59
60Khard was started by [Eric Scheibler](http://eric-scheibler.de) and is
61currently maintained by @lucc.  [Several
62people](https://github.com/scheibler/khard/graphs/contributors) have
63contributed over the years.
64
65Related projects
66----------------
67
68If you need a console based calendar too, try out
69[khal](https://github.com/geier/khal).
70
71  [blog]: http://eric-scheibler.de/en/blog/2014/10/Sync-calendars-and-address-books-between-Linux-and-Android/
72  [sad]: http://alessandrorossini.org/2012/11/15/the-sad-story-of-the-vcard-format-and-its-lack-of-interoperability/
73  [repos]: https://repology.org/project/khard/versions
74  [repos-badge]: https://repology.org/badge/tiny-repos/khard.svg
75  [docs]: https://khard.readthedocs.io/en/latest/
76  [docs-badge]: https://readthedocs.org/projects/khard/badge/?version=latest
77  [travis]: https://travis-ci.org/scheibler/khard
78  [travis-badge]: https://travis-ci.org/scheibler/khard.svg?branch=develop
79