How To Install MongoDB On Mac
MongoDB is most popular today, it is a NoSQL database. This article will tell you how to install it on macOS correctly.
How To Install MongoDB On Mac Read More »
MongoDB is most popular today, it is a NoSQL database. This article will tell you how to install it on macOS correctly.
How To Install MongoDB On Mac Read More »
When you develop a python Django web project, you may find it is not easy to debug the source code even edit the source files. But with Eclipse PyDev, you can create and debug the Django project easily and fix errors quickly. This article will tell you how to use Eclipse PyDev to create and
How To Debug Django Project With Eclipse And PyDev Read More »
Django web project consists of applications, and each Django web project can contain multiple applications. This article will tell you how to create and add a Django application to a web project. All the operation is implemented in a virtual environment. Please read How To Install Python Django In Virtual Environment first if you do not
How To Make A Website With Python And Django Read More »
When you develop a Python application, you may want to make your develop environment-used libraries independent from other libraries that the system provided or other projects used. And then create the project in that isolated environment, so that the project can use the library it needs only and each project will not influence each other.
How To Install Python Django In Virtual Environment Read More »
Django is the most popular web framework in the python world. You can use it to create a website quickly and simply. Selenium is the most popular website automation testing framework, it can be used to implement website automation function testing in source code with coding language python, java, etc. This example will tell you
Python Automation Scripts Examples Use Django And Selenium Read More »
When I run below python selenium Webdriver source code to open a Firefox browser to run an automation test in macOS, I meet an error message selenium.common.exceptions.WebDriverException:Message: ‘geckodriver’ executable needs to be in PATH. This article will tell you how to fix it.
How To Resolve WebdriverException Geckodriver Executable Needs To Be In Path Read More »
CSV is the abbreviation of Comma Separated Values, CSV file is a text file contains CSV format content. Below is an example of CSV file content, it is so simple. We can see that there are three lines in the file, the first line is the header field name line, there are three fields. The
Python Read/Write CSV File Example Read More »
Random string is used widely in password, uuid, captcha text, verification number etc. Python string, random and uuid module provide method to generate random string with digit or alphabet content or digital and alphabet mixed content. This article will show you some examples.
Python Generate Random String Of Specific Length Read More »
This example tell you how to convert a python list element to a python string, the list data can be pure string data or mix data type such as string, number and boolean. The methods below also applicable to python tuple ( read only python list ), just replace [ ] to ( ). Below
How To Convert Python List / Tuple Element To String Read More »
Random captcha is very useful in web applications. It can be used to avoid network attacks. Python captcha module can help you to create both image and audio captcha easily. This article will show you how to create image and audio captcha file use the python captcha library.
How To Generate Random Captcha In Python Read More »