segno.helpers.make_mecard(Python)
制作名片二维码的,浅浅的mark一下参数的东西。
官方文档是这么写的:
segno.helpers.make_mecard(name, reading=None, email=None, phone=None, videophone=None, memo=None, nickname=None, birthday=None, url=None, pobox=None, roomno=None, houseno=None, city=None, prefecture=None, zipcode=None, country=None
)
具体文档解释如下:
name:(str) – Name. If it contains a comma, the first part is treated as lastname and the second part is treated as forename.
reading:(str or None) – Designates a text string to be set as the kana name in the phonebook
email:(str, iterable of strings, or None) – E-mail address. Multiple values are allowed.
phone:(str, iterable of strings, or None) – Phone number. Multiple values are allowed.
videophone:(str, iterable of strings, or None) – Phone number for video calls. Multiple values are allowed.
memo:(str or None) – A notice for the contact.
nickname:(str or None) – Nickname.
birthday:(str, datetime.date or None) – Birthday. If a string is provided, it should encode the date as YYYYMMDD value.
url:(str, iterable of strings, or None) – Homepage. Multiple values are allowed.
pobox:(str or None) – P.O. box (address information).
roomno:(str or None) – Room number (address information).
houseno:(str or None) – House number (address information).
city:(str or None) – City (address information).
prefecture:(str or None) – Prefecture (address information).
zipcode:(str or None) – Zip code (address information).
country:(str or None) – Country (address information).