Twitter Mining with Tweepy and mongoDB
If you want to analyze data on current topics and opinions, Twitter is often a very good data source. To save tweets from the Twitter Streaming API to a mongoDB database easily, I wrote this little Python script.
How to Implement a Twitter Feed on Your Django Website
You want to display your Twitter messages on your Django website and decide which tweet should be displayed? No problem, here you can find my solution.
Twitter Sentiment Analysis with Azure's Text Analytics API
Creating a sentiment analysis with Twitter messages is not really easy due to the brevity of the texts and the frequently used irony and sarcasm. With the Azure Text Analytics API this works surprisingly well anyway.
Deploy Your Django Azure Web App with Python 3.6
You want to use the automatic deployment scripts that Azure web apps provide, but your Django website needs Python 3.6? No problem, with your own deploy.cmd, this challenge will work.
Learn to code Python with COZMO
There are many ways to learn Python. A particularly funny way is to do it together with the little robot COZMO and its SDK for Python.
Using TinyMCE with Django
Want to use a WYSIWYG editor within your Django webapp? TinyMCE is a good choice and the best: there is a Django module that makes the implementation as easy as pie.
Learn to code with TurtleCoder!
You think learning to program is too complex and boring for primary school children? Wrong! TurtleCoder is an intuitive webapp with which you can quickly and independently make first steps in programming based on LOGO.
Find specific words on web pages with Scrapy
Have you ever had the problem to scan your website for specific words, for example to find restricted words. This is a perfect job for Python and Scrapy. With only a few lines of code you can automate this task.
Adjusting X_FRAME_OPTIONS in Django
When you deploy your Django application to production it is recommendable to adjust the settings.py with several security settings. One is the X_FRAME_OPTIONS setting, which protects your website against clickjacking.