phamhm

Results 3 comments of phamhm

TextBlob calls word tokenizer from the nltk package. You can find that class in nltk.tokenize.treebank.TreebankWordTokenizer. You'll find the regular expression in the ENDING_QUOTES list. ``` ENDING_QUOTES = [ (re.compile(r'"'), "...

Most of the time, when setting up the initial django project, the project dir will be /path/to/my-django-project/. this will set the DJANGO_SETTIGS_MODULES to be "my-django-project.settings". I just wrote a little...

Yes, you need to install mongodb first. Your steps are: 1. install mongodb using your method of choice. 2. start the mongo server. Either use 'mongod' or 'service mongodb start'...