当前位置: 首页>>代码示例>>Python>>正文


Python Link.date方法代码示例

本文整理汇总了Python中link.Link.date方法的典型用法代码示例。如果您正苦于以下问题:Python Link.date方法的具体用法?Python Link.date怎么用?Python Link.date使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在link.Link的用法示例。


在下文中一共展示了Link.date方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: getLinks

# 需要导入模块: from link import Link [as 别名]
# 或者: from link.Link import date [as 别名]
	def getLinks(self):
		r= requests.get(self.URL1)
		 
		soup = BeautifulSoup(r.content)
		 
		linksArray = []
		nasdaqArray = []
		index = 0;
	 
		links = soup.findAll("ul",{"class":"list-links"})
		dates = soup.findAll("div",{"class":"col-sm-3 col-md-2"})
		#dates = soup.findAll("p"),{"class":"date"})
		#timePublished = soup.findAll("p",{"class":"time"})
	 	buttons = soup.findAll("div",{"class":"btn-group"})
 		[button.extract() for button in buttons]

		for link in links:
			
			title = link.findAll('a',href=True)
			text = link.findAll('li')
			


			match = re.search("[(]\s?nasdaq(:| :|: | :|)\s?(?P<symbol>[a-z][a-z][a-z][a-z]?)\s?.*?[)]",link.getText().lower())
			if match:
				if match.group("symbol"):
					match2 = re.search("to Present at",link.getText())
					if not match2:
						for symbol in reader.requestArray:
						
							if symbol[0].lower() == match.group("symbol"):
								if not "," in str(dates[index]):
							
									newLink = Link()
									newLink.symbol = symbol[0]
									newLink.url = title[0]['href']
									newLink.text = text[1].text
									newLink.linkText = title[0].text
									newLink.date = dates[index].text.strip()
									newLink.source = "PrNewswire"
									linksArray.append(newLink)
								
								elif self.today in str(dates[index]):
									
									newLink = Link()
									newLink.symbol = symbol[0]
									newLink.url = title[0]['href']
									newLink.text = text[1].text
									newLink.linkText = title[0].text
									newLink.date = dates[index].text.strip()
									newLink.source = "PrNewswire"
									linksArray.append(newLink)

			index= index+1	
	 
		return linksArray
开发者ID:mjheller,项目名称:thundersnow,代码行数:58,代码来源:prNewswire.py

示例2: getLinks

# 需要导入模块: from link import Link [as 别名]
# 或者: from link.Link import date [as 别名]
	def getLinks(self):
		linksArray = []
	 
		for pageNumber in self.pageArray:
			urlQuery = self.query.format(pageNumber)
			#print URL+urlQuery
			resp = requests.get(self.URL+urlQuery)
			soup = BeautifulSoup(resp.content)
	 
			index = 0;
			
			ul = soup.findAll("ul",{"class":"bw-news-list"})
			links = soup.select("ul.bw-news-list li")
			dates = soup.findAll("time")
			headlyne = soup.select("ul.bw-news-list h3")
			summaries = soup.select("ul.bw-news-list p")
			
			for link in links:
				title = link.findAll('a',href=True)
				text = link.findAll('p')
				#match1 = re.search("") to match the company name with symbol[0] from reader
				match = re.search("[(]\s?nasdaq(:| :|: | :|)\s?(?P<symbol>[a-z][a-z][a-z][a-z]?)\s?[)]",link.getText().lower())
				if match:
					if match.group("symbol"):
						match2 = re.search("to present at",link.getText().lower())
						if not match2:
							if self.today in str(dates[index]):
								for symbol in reader.requestArray:
									if symbol[0].lower() == match.group("symbol"):
										newLink = Link()
										newLink.symbol = symbol[0]
										newLink.url = title[0]['href']
										newLink.text = text[0].text
										newLink.linkText = title[0].text
										newLink.date = dates[index].text.strip()
										newLink.source = "BusinessWire"
										linksArray.append(newLink)
				index= index+1		
	 
		return linksArray

	 	
开发者ID:mjheller,项目名称:thundersnow,代码行数:42,代码来源:businessWire.py

示例3: getLinks

# 需要导入模块: from link import Link [as 别名]
# 或者: from link.Link import date [as 别名]
	def getLinks(self):
		
		s = requests.Session()
		dummyResp = s.get("http://www.marketwired.com/")
		linksArray = []
	 
		for pageNumber in self.pageArray:
			urlQuery = self.query.format(pageNumber)
			resp = s.get(self.URL1)
			queryResp = s.get(resp.url+urlQuery)
			
			soup = BeautifulSoup(queryResp.content)
			links = soup.findAll("div",{"style":"margin-bottom: 30px;"})
			dates = soup.findAll("span",{"style":"color: #888888; font-size: 9pt"})

			index = 0;		 
			
			for link in links:
				title = link.findAll('a',href=True)
				text = link.findAll('div',{"class":"search-results-width"})

				match = re.search("[(]\s?nasdaq(:| :|: | :|)\s?(?P<symbol>[a-z][a-z][a-z][a-z]?)\s?[)]",link.getText().lower())
				if match:
					if match.group("symbol"):
						match2 = re.search("to present at",link.getText().lower())
						if not match2:
							for symbol in reader.requestArray:
								if symbol[0].lower() == match.group("symbol"):
	
									if self.today in str(dates[index]):
										newLink = Link()
										newLink.symbol = symbol[0]
										newLink.url = "http://www.marketwired.com"+title[0]['href']
										newLink.text = text[1].text
										newLink.linkText = title[0].text
										newLink.date = dates[index].text.strip()
										newLink.source = "MarketWired"
										linksArray.append(newLink)
				index= index+1
	 
		return linksArray
开发者ID:mjheller,项目名称:thundersnow,代码行数:43,代码来源:marketWired.py


注:本文中的link.Link.date方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。