当前位置:网站首页>Climb movie paradise 2021 hot
Climb movie paradise 2021 hot
2022-07-03 06:32:00 【Bobo AI leaves work】
import requests
import re
url='https://dytt89.com/'
res=requests.get(url)#,verify=False
res.encoding='gbk'
# print(res.text)
obj1=re.compile(r'.*?2021 Must see hot film .*?<ul>(?P<movie>.*?)</ul>',re.S)
obj2=re.compile(r".*?<a href='(?P<link>.*?)title")
res1=obj1.finditer(res.text)
res2=obj2.finditer(res.text)
for it in res1:
dic = it.groupdict('movie')
print(dic)
# dic['movie'] = dic['movie'].strip()
for itt in res2:
dic2 = itt.groupdict()
print(dic2)
# dic2['link'] = dic2['link'].strip()
print(' Finished processing ')
边栏推荐
- Nacos service installation
- 远端rostopic的本地rviz调用及显示
- Scroll view specifies the starting position of the scrolling element
- scroll-view指定滚动元素的起始位置
- Project summary --01 (addition, deletion, modification and query of interfaces; use of multithreading)
- Advanced technology management - do you know the whole picture of growth?
- 论文笔记 VSALM 文献综述《A Comprehensive Survey of Visual SLAM Algorithms》
- Floating menu operation
- Condition annotation in uni-app realizes cross segment compatibility, navigation jump and parameter transfer, component creation and use, and life cycle function
- Luogu problem list: [mathematics 1] basic mathematics problems
猜你喜欢
Scroll view specifies the starting position of the scrolling element
Use abp Zero builds a third-party login module (I): Principles
Cesium 点击获取模型表面经纬度高程坐标(三维坐标)
Project summary --2 (basic use of jsup)
SSH link remote server and local display of remote graphical interface
Selenium - by changing the window size, the width, height and length of different models will be different
2022 CISP-PTE(三)命令执行
Oauth2.0 - using JWT to replace token and JWT content enhancement
Interesting research on mouse pointer interaction
论文笔记 VSALM 文献综述《A Comprehensive Survey of Visual SLAM Algorithms》
随机推荐
MySQL带二进制的库表导出导入
100000 bonus is divided up. Come and meet the "sister who braves the wind and waves" among the winners
Tabbar settings
Kubesphere - build Nacos cluster
Simple understanding of ThreadLocal
Cesium entity (entities) entity deletion method
Support vector machine for machine learning
使用conda创建自己的深度学习环境
Oracle database synonym creation
Redis cluster creation, capacity expansion and capacity reduction
深入解析kubernetes controller-runtime
JMeter linked database
Example of joint use of ros+pytoch (semantic segmentation)
Printer related problem record
YOLOV3学习笔记
Yolov1 learning notes
Svn branch management
SQL实现将多行记录合并成一行
The difference between CONDA and pip
有意思的鼠标指针交互探究