예제 #1
0
파일: __init__.py 프로젝트: canpolat/sourpy
def get_sukela():
	url = "https://eksisozluk.com"
	return common.__fetch_entry(url)
예제 #2
0
파일: __init__.py 프로젝트: canpolat/sourpy
def get_entry(entry_id):
	if not entry_id.isdigit():
		raise common.SourPyException("Entry ID should be a number. Current value: {}.".format(entry_id))

	url = "https://eksisozluk.com/entry/" + entry_id
	return common.__fetch_entry(url)