本文整理汇总了Python中inbox.models.backends.generic.GenericAccount.create_emailed_events_calendar方法的典型用法代码示例。如果您正苦于以下问题:Python GenericAccount.create_emailed_events_calendar方法的具体用法?Python GenericAccount.create_emailed_events_calendar怎么用?Python GenericAccount.create_emailed_events_calendar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类inbox.models.backends.generic.GenericAccount
的用法示例。
在下文中一共展示了GenericAccount.create_emailed_events_calendar方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_account
# 需要导入模块: from inbox.models.backends.generic import GenericAccount [as 别名]
# 或者: from inbox.models.backends.generic.GenericAccount import create_emailed_events_calendar [as 别名]
def create_account(self, email_address, response):
# This method assumes that the existence of an account for the
# provider and email_address has been checked by the caller;
# callers may have different methods of performing the check
# (redwood auth versus get_account())
namespace = Namespace()
account = GenericAccount(namespace=namespace)
# The server endpoints can ONLY be set at account creation and
# CANNOT be subsequently changed in order to prevent MITM attacks.
account.provider = self.provider_name
if self.provider_name == 'custom':
account.imap_endpoint = (response['imap_server_host'],
response['imap_server_port'])
account.smtp_endpoint = (response['smtp_server_host'],
response['smtp_server_port'])
account.create_emailed_events_calendar()
# Shim for back-compatability with legacy auth
# The old API does NOT send these but authentication now uses them
# so set them (included here, set in update_account()).
for username in ['imap_username', 'smtp_username']:
if username not in response:
response[username] = email_address
for password in ['imap_password', 'smtp_password']:
if password not in response:
response[password] = response['password']
return self.update_account(account, response)
示例2: generic_account
# 需要导入模块: from inbox.models.backends.generic import GenericAccount [as 别名]
# 或者: from inbox.models.backends.generic.GenericAccount import create_emailed_events_calendar [as 别名]
def generic_account(db):
import platform
from inbox.models.backends.generic import GenericAccount
from inbox.models import Namespace
ns = Namespace()
account = GenericAccount(email_address="[email protected]", sync_host=platform.node(), provider="custom")
account.namespace = ns
account.create_emailed_events_calendar()
account.password = "bananagrams"
db.session.add(account)
db.session.commit()
return account