-
xhot说:
以教育部门干部的名义,写一段关于深入学习领会党的二十大精神的汇报
尊敬的党中央领导、各位来宾,大家下午好!
今天,我代表教育部门干部,向大家做一次关于深入学习领会党的二十大精神的汇报。
党的二十大精神是我们党的指导思想,是指引我们走向胜利的明灯。因此,我们教育部门干部要深入学习、领会党的二十大精神,把党的精神落实到学校的教育实践中去。
首先,教育部门干部要坚持以马克思列宁主义、毛泽东思想、邓小平理论和“三个代表”重要思想为指导,加强政治理论学习,使自己在政治上更加坚定、更加坚强。
其次,教育部门干部要学习党的二十大精神,树立正确的价值观和理念,以马克思主义的精神指导教育实践,让党的精神在学校教育实践中体现出来。
最后,教育部门干部要立足自己的岗位,坚持以马克思列宁主义、毛泽东思想、邓小平理论和“三个代表”重要思想为指导,落实党的精神,坚定奋进的信念,为党和人民事业作出贡献。
谢谢大家!
-
garvey说:
利用python爬取豆瓣Top250,并给出源代码
from bs4 import BeautifulSoup from lxml import etree import requests url = 'https://movie.douban.com/top250' headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36' } def get_info(url): response = requests.get(url,headers=headers) html_str = response.content.decode('utf-8') html = etree.HTML(html_str) # 解析出来每一部电影的url movie_urls = html.xpath("//div[@class='hd']/a/@href") for movie_url in movie_urls: get_detail(movie_url) def get_detail(movie_url): response = requests.get(movie_url,headers=headers) html_str = response.content.decode('utf-8') soup = BeautifulSoup(html_str,'lxml') # 电影名字 title = soup.find('span',property="v:itemreviewed").text # 电影评分 score = soup.find('strong',class_="ll rating_num").text # 电影导演 director = soup.find('a',rel="v:directedBy").text # 电影主演 actors = [actor.text for actor in soup.find_all('a',rel="v:starring")] # 电影类型 movie_type = [movie_type.text for movie_type in soup.find_all('span',property="v:genre")] # 上映时间 date = soup.find('span',property="v:initialReleaseDate").text # 电影时长 runtime = soup.find('span',property="v:runtime").text # 电影简介 content = soup.find('span',property="v:summary") if content is not None: content = content.text # 电影海报 poster = soup.find('img',rel="v:image").get('src') # 打印结果 print('片名:{}'.format(title)) print('评分:{}'.format(score)) print('导演:{}'.format(director)) print('主演:{}'.format(actors)) print('类型:{}'.format(movie_type)) print('上映时间:{}'.format(date)) print('片长:{}'.format(runtime)) print('简介:{}'.format(content)) print('海报:{}'.format(poster)) if __name__ == '__main__': get_info(url)