我可以用古书创建一个带有姓名和电子邮件的谷歌联系人,但我需要添加电话。
答案1
我已修补goobook
以在添加新联系人时接受电话号码。克隆我的分叉存储库:
git clone https://gitlab.com/ardrabczyk/goobook && cd goobook
现在您可以按照 中的说明进行操作README.rst
。在这种情况下,当您现在goobook
从源安装时,只需执行以下操作:
sudo python3 ./setup.py install
就我个人而言,我不喜欢全局安装包并sudo
在没有这种需要时使用,所以考虑这样做:
python3 setup.py install --user
您不需要输入root's
密码,goobook
并将安装到~/.local/bin
.查看命令的新帮助add
:
$ ~/.local/bin/goobook add -h
usage: goobook add [-h] [NAME] [EMAIL] [PHONE]
Create new contact, if name and email is not given the sender of a mail read
from stdin will be used.
positional arguments:
NAME Name to use.
EMAIL E-mail to use.
PHONE Phone number to use.
optional arguments:
-h, --help show this help message and exit
添加带有电话号码的新测试条目:
~/.local/bin/goobook add fork-goobook [email protected] 789456123
确保它已正确创建:
$ ~/.local/bin/goobook query 789456123
[email protected] [email protected]
请记住,我引入的更改尚未被goobook
开发人员正式接受,并且您现在正在使用
叉。