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


Python Post.like_count方法代碼示例

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


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

示例1: Post

# 需要導入模塊: from forum.models import Post [as 別名]
# 或者: from forum.models.Post import like_count [as 別名]
            thread_content = body.text.split(thread_header_spliter)[-1].split(u'\n--\n')[0]
        except Exception, e:
            logger.error('ERROR: parsing content failed, skip...')
            return

        try: 
            post = Post(title=thread_title, content=thread_content, author=user, post_source_name='飲水思源', 
                        post_source_url=url, like_count=like_count)
            post.save()
            logger.info('post %s created successfully \n' % post.id)
        except IntegrityError, e:
            post = Post.objects.get(title=thread_title)
            if post:
                logger.error('post existed, but will update like count')
                post.like_count = like_count
            logger.error('ERROR: %s' % e.message)
        except DatabaseError, e:
            logger.error('ERROR: %s' % e.message)
        except Exception, e:
            logger.error('ERROR: %s' % e.message)

        else:
            # load images
            thread_imgs = body.findAll('img')
            for img in thread_imgs:
                for key in ad_list:
                    if key in img['src']:
                        continue
                if img['src']:
                    image = Image(content_object=post, image_src=img['src'])
開發者ID:caogecym,項目名稱:muer,代碼行數:32,代碼來源:scrapeSjtu.py


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