Python virtualenv and virtualenvwrapper

Install Python Install pip Install virtualenv https://virtualenv.pypa.io/en/stable/ virtualenv is a tool to create isolated Python environments. The basic problem being addressed is one of dependencies and versions, and indirectly permissions virtualenvwrapper http://virtualenvwrapper.readthedocs.io/en/latest/ virtualenvwrapper is a set of extensions to Ian Bicking’s virtualenv tool. The extensions include wrappers for creating and deleting virtual environments and otherwise […]

Python docs 3.4 List 102

https://docs.python.org/3.5/tutorial/datastructures.html The list data type has some more methods. Here are all of the methods of list objects: list.append(x) Add an item to the end of the list. Equivalent to a[len(a):] = [x]. list.extend(L) Extend the list by appending all the items in the given list. Equivalent to a[len(a):] = L. list.insert(i, x) Insert an […]

Python docs 3.4 List 101

https://docs.python.org/3.4/tutorial/introduction.html#lists Using the Python Interpreter. Python knows a number of compound data types, used to group together other values. The most versatile is the list, which can be written as a list of comma-separated values (items) between square brackets. Lists might contain items of different types, but usually the items all have the same type. […]

TextBlob 101 Information Retrieval

TextBlob https://www.analyticsvidhya.com/blog/2018/02/natural-language-processing-for-beginners-using-textblob/   Information retrieval (IR) is the activity of obtaining information system resources relevant to an information need from a collection of information resources. Searches can be based on full-text or other content-based indexing. Information retrieval is the science of searching for information in a document, searching for documents themselves, and also searching for […]