示例#1
0
文件: crunchbase.py 项目: pagewoo/ASL
 def get(self):
     client = Crunchbase()
     q = self.request.get('q')
     results = client.company_search(q)
     self.finish([{'name': r['name'],
                   'uri': '/crunchbase/company/%s' % r['permalink']}
                  for r in results])
示例#2
0
文件: room.py 项目: pagewoo/ASL
def crunch_base(message):
	message = message['message']
	crunch_results = []
	p = re.compile(r'\^\w+')
	matches =p.findall(message)
	logging.info(matches)
	for match in matches:
		
		query = match.replace('^', '')
		logging.warning('QUERY = ' + str(query))
		crunchbase = Crunchbase()
		# lookup with crunchbase
		crunch = crunchbase.company_summary(query)
		crunch_results.append(crunch)

	return crunch_results
示例#3
0
文件: crunchbase.py 项目: pagewoo/ASL
 def get(self, name):
     client = Crunchbase()
     self.finish(client.company_summary(name))