aboutsummaryrefslogtreecommitdiff
blob: 4a86d4a20bb387db9b41d082d0bb3609617b2137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python3.6

# Images
class image(object):
	# Image products, with type

	# Attributes:
	#	name: A string with the image's name
	#	date: A string with the image's creation date

	def __init__(img, name):
		# Return the image's name
		img.name = name

	def set_date(img, date):
		# Return the image's date of creation
		img.date = date