예제 #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)