[Python] Use googletrans Python Package to use Google Translate
If we want to translate a language to another language, many people will open the Google Translate web.
Read More »[Python] Use googletrans Python Package to use Google TranslateIf we want to translate a language to another language, many people will open the Google Translate web.
Read More »[Python] Use googletrans Python Package to use Google TranslateThe Facebook AI team open sourced the chatbot Blender this week. I remembered that this project seemed to have been seen a few years ago? (it to be called ParlAI?)
Read More »[NLP][Python] Try to Use the Latest Open Source Chatbot “Blender” developed by Facebook AI TeamRecently, I studied a word cloud generation tool for a while, and of course I used the famous wordcloud package in python. I currently have a function that I want to do is to customize the background of the picture, but I only found the use of a picture mask to reshape the word cloud.
wordcloud is a famous python package to generate word cloud. Today I want to record how to change the word color in the word cloud generated by this package.
matplotlib is a famous python plot package and most of user used it to process the image.
But when I using matploblib package to plot a image, I do not like the white border of my plot image.
wordcloud is a famous python package to generate word cloud. I also record about how to use the package to make a word cloud, but today I have further studied the setting of wordcloud according to different picture masks to generate different shapes of word clouds, and even control the color of the word cloud.
Today, when I re-used the package “GoogleNews” in Python that can automatically return search results (you can refer to [Python] Using “GoogleNews” package to get the Google News that I wrote before), it may be because I upgraded this package The version of, there is no problem in the English search, but the search result in the Chinese search is not returned, and there is no error.
Read More »[Solved] (2020/04/23 Updated) Python GoogleNews can not Return Chinese Search ResultsIn python, If we want to split a text with a specific character, and save the sub-paragraphs in the List data type, we can use split() function to do it simply.
For a long time, I want to write an article about crawlers, recording the regular expression, IP settings, user agent… etc. often used tools or some knowledge.
Read More »[Python] Use Selenium package to crawl the google search engineAll the time unless I just want to write a simple test, or a single script, statistical program… I have always created a python virtual environment for the project I am developing.
Read More »[Python] How to Build a Python Virtual Environment in a Folder