Developing a blazing fast website in Python using Falcon and Bjoern

Khalid AlnajjarWeb Development Leave a Comment

Few days back, I wanted to develop a web service in Python. I wanted to run the service on my VPS with as minimal resources as possible while providing a fast service. I started looking for benchmarks online of different Python web frameworks and WSGI servers, and found out about two awesome libraries, falcon and bjoern. Falcon is a micro-framework that is designed ...

How to setup and use Stanford CoreNLP Server with Python

Khalid AlnajjarNatural Language Processing (NLP) Leave a Comment

Stanford CoreNLP is a great Natural Language Processing (NLP) tool for analysing text. Given a paragraph, CoreNLP splits it into sentences then analyses it to return the base forms of words in the sentences, their dependencies, parts of speech, named entities and many more. Stanford CoreNLP not only supports English but also other 5 languages: Arabic, Chinese, French, German and ...