當前位置: 首頁>>代碼示例>>Python>>正文


Python Users.get方法代碼示例

本文整理匯總了Python中users.Users.get方法的典型用法代碼示例。如果您正苦於以下問題:Python Users.get方法的具體用法?Python Users.get怎麽用?Python Users.get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在users.Users的用法示例。


在下文中一共展示了Users.get方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: save

# 需要導入模塊: from users import Users [as 別名]
# 或者: from users.Users import get [as 別名]
def save():
    """
    POST /save
    """
    user_token = request.form["user_token"]
    enabled = request.form["enabled"]
    parsed_uri = urlparse(request.form["url"])

    # Parse the URL, if lengthy URL get only domain name
    if parsed_uri.path:
        domain = parsed_uri.path
    else:
        domain = '{uri.scheme}://{uri.netloc}'.format(uri=parsed_uri)

    # Enabled flag to save in db
    enabled = 1 if enabled == "true" else 0

    webmon_users = Users()
    users = webmon_users.get(user_token)
    if users.count() > 0:
        # If user already exists
        user = users.first()
        # If no changes compared to previous change
        if user.url == domain and user.enabled == enabled:
            return "URL added successfully"

        # Update to Db and send notification
        webmon_users.update(user, user_token, domain, enabled)
        timeline.send_update_notification(user_token, domain,
                                          enabled, update=True)
    else:
        # New Registration, add to db and send notification
        webmon_users.add(user_token, domain, enabled)
        timeline.send_update_notification(user_token, domain,
                                          enabled, update=False)
    return "URL added successfully"
開發者ID:aravindavk,項目名稱:webmon,代碼行數:38,代碼來源:server.py


注:本文中的users.Users.get方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。