Teach you five small projects done with PYTHON for free ~ learn them in a few minutes~
I'm coming ~ update online on time every day!!
Interested babies are not quick to click and pay attention 🤷♀️🤷♀️🤷♀️
Recently, I found many interesting small projects when doing Python project development, and they all have less code, are easy to use, and are very friendly to novices. So today, let's share some fun projects ...
Posted by xtrafile on Sat, 11 Dec 2021 02:34:07 +0100
Crawler series: using MySQL to store data
In the last article, we explained How do crawlers store CSV files In this article, we explain how to save the collected data to MySQL database.MySQL is the most popular open source relational database management system. It is surprising that an open source project is so competitive. Its popularity is constantly approaching two closed source com ...
Posted by Terminator on Thu, 09 Dec 2021 18:04:49 +0100
Take you to learn the basics of python: List
In this section, we will learn more about List operations in more detail!
1, What is the list?
What a list is: a box can hold all kinds of things, and the box is equivalent to this list, which is what can hold all kinds of data in the program.
To put it professionally, a list is composed of a series of elements arranged in a specific order. ...
Posted by opencombatclan on Thu, 09 Dec 2021 00:51:06 +0100
Log information and configuration of scripy
Get started with python Programming quickly (continuous update...)
python crawler from entry to mastery
Scrapy crawler framework
1. Understand the log information of the sweep
(omitted)
2. Common configuration of scratch
ROBOTSTXT_ Whether obey complies with the robots protocol. The default is compliance
About robots protocol 1. In ...
Posted by PeeJay on Tue, 07 Dec 2021 06:36:15 +0100
Grab websites using Python, Scrapy, and MongoDB
introduce
data has become a new commodity, and the price is expensive. As people create unlimited content online, the amount of data on different websites has increased, and many start-ups have come up with the idea of needing this data. Unfortunately, due to time and money constraints, they can't always produce by themselves. &e ...
Posted by veridicus on Sat, 04 Dec 2021 22:32:51 +0100
Problems and solutions in iframe
preface
Today, when I was working on the verification code identification project, I encountered a problem at the beginning. I reported all kinds of errors. I studied and inquired for a long time and finally solved it. I'll summarize and share it here.
Problems encountered and Solutions
...
Posted by xdracox on Thu, 02 Dec 2021 22:21:43 +0100
My first experience of Go + language -- zero basic learning Go + crawler
My first experience of Go + language - (4) zero basic learning Go + crawler
"My first experience of Go + language" | the essay solicitation activity is in progress
Go + language is very suitable for writing crawler programs. It has the advantages of perfect concurrency mechanism, large number of concurrency, less resource occupat ...
Posted by McManCSU on Wed, 01 Dec 2021 12:54:19 +0100
Use Python crawler to crawl video resources of a video material website
Recently, I was studying video editing. I found a lot of video materials from the Internet and found some good material websites. For example, this website: www.mazwai.com has a lot of Free HD video materials. Sometimes I want to get the information of all relevant video materials searched through a keyword. The manual click efficiency i ...
Posted by johnsmith153 on Fri, 19 Nov 2021 09:51:53 +0100
Breakpoint crawler implementation II
title: breakpoint crawler implementation (II) author: LiSoul date: 2021-11-12
I believe the students here have read the first article I wrote. In this next article, we will mainly talk about how to combine the code of the previous article to optimize our code
1. Algorithm
At this point, let's talk about two algorithms. I believe ...
Posted by TonyB on Fri, 12 Nov 2021 14:59:45 +0100
Crawler tutorial - Download Video
1, Code
1. Write directly from top to bottom
import os
import sys
import requests
import re
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
if __name__ == '__main__':
# Input the video number and obtain the cid by constructing the get reques ...
Posted by Fruct0se on Fri, 12 Nov 2021 00:48:14 +0100