コード例 #1
0
ファイル: contactsdb.py プロジェクト: vesellov/datahaven
def save_customers(path):
    """
    Write current customers list on the disk, `path` is a file path to save.
    """
    dhnio._write_list(path, customers())
コード例 #2
0
ファイル: contactsdb.py プロジェクト: vesellov/datahaven
def save_correspondents(path):
    """
    Write current correspondents list on the disk, `path` is a file path to save.
    """
    dhnio._write_list(path, correspondents())
コード例 #3
0
ファイル: contactsdb.py プロジェクト: vesellov/datahaven
def save_suppliers(path):
    """
    Write current suppliers list on the disk, `path` is a file path to save.
    """
    dhnio._write_list(path, suppliers())