Example #1
0
def get_sukela():
	url = "https://eksisozluk.com"
	return common.__fetch_entry(url)
Example #2
0
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)