[PyCharm] Installation Tutorial, A famous Python IDE
Last Updated on 2021-06-02 by Clay
Read More »[PyCharm] Installation Tutorial, A famous Python IDELast Updated on 2021-06-02 by Clay
Read More »[PyCharm] Installation Tutorial, A famous Python IDELast Updated on 2021-06-02 by Clay
I wrote a simple socket tutorial before, if you are not similar about this, maybe you can refer here: Python Package Tutorial: Socket
Read More »[Python] Using Socket to build a ChatbotLast Updated on 2021-06-02 by Clay
I originally planned to write a simple tutorial of ChatBot using Socket, that would only repeat what you said. Which is similar to the current LineBot tutorial on the internet. The difference is that I using Socket but LineBot I have seen that most are implemented using "webhook".
Read More »[Python] How to Use Socket in PythonLast Updated on 2021-06-02 by Clay
Google news is a famous news platform by Google, and it will recommend you "what news you want to read" with your history browsing history. (I think it is training from relational learning, but I'm not sure.)
Read More »[Python] Using "GoogleNews" package to get the Google NewsLast Updated on 2021-06-02 by Clay
Bash on Ubuntu on Windows, or called it "Windows Subsystem for Linux (WSL)", as the name suggests, it is the Linux subsystem on Windows.
Read More »Bash on Ubuntu on Windows, the Linux subsystem on WindowsLast Updated on 2021-06-02 by Clay
"os" is a Python package and it can help us to implement many infrastructure operators.
Read More »[Python] Use built-in "os" module to traversal every file and count the file sizeLast Updated on 2021-05-31 by Clay
I always meet any problem everyday, to use a new tool to solve problems has become part of my life.
Read More »[Python] How to Use "xlrd" package to read XLS fileLast Updated on 2021-05-22 by Clay
When I was implementing my side project today, I need to crop a lot of images. Fortunately, the size of image is all 1920 x 1080, so I can crop the fixed area.
Read More »[Python] Use Pillow package to crop the image