コード例 #1
0
ファイル: commands.py プロジェクト: resa89/imusite
 def force_content_unicode(self):
     # Content must be str with ascii encoding, or unicode!
     self.content = force_unicode(self.content)
コード例 #2
0
ファイル: parsers.py プロジェクト: resa89/imusite
 def __init__(self, value):
     value = force_unicode(value)
     self.soup = self.BeautifulSoup(value)