-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyyyc_v18.py
95 lines (77 loc) · 2.33 KB
/
pyyyc_v18.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
import properties
class Person(properties.PropertyClass):
""" class Person
This class contains basic info about people
"""
name = properties.String(
'Name of person',
required=True
)
bio = properties.String(
'Short biography'
)
class Slide(properties.PropertyClass):
""" class Slide
This class contains info about individual slides
"""
topic = properties.String(
'Topic of presentation',
default='Python!'
)
slide_color = properties.Color(
'Color of the slides',
default='white'
)
def strains_eyes(self):
return(any([rgb > 200 for rgb in self.slide_color]) and
any([rgb < 50 for rgb in self.slide_color]))
class PyYYCPresentation(properties.PropertyClass):
""" class PyYYCPresentation
This class contains info about basic presentations at the
PyYYC meetup. It generates some really useful summary info
about the presentation.
"""
presenter = properties.Pointer(
'Presenter info',
ptype=Person,
required=True
)
topic = properties.String(
'Topic of presentation',
default='Python!'
)
time_limit = properties.Float(
'Time limit in minutes',
default=90.
)
slides = properties.Pointer(
'Slideshow',
ptype=Slide,
repeated=True
)
def summarize(self):
"""Print a short description of the presentation. Useful for
press junkets.
"""
print('Pythonista {name} talking about {topic}.'.format(
name=self.presenter.name,
topic=self.topic
))
def cliff_notes(self):
"""Print a long description of the presentation. """
self.summarize()
for i, slide in enumerate(self.slides):
print('Slide {num}: {topic}'.format(
num=i,
topic=slide.topic
))
def time_per_slide(self):
"""Time available for each slide"""
return self.time_limit / len(self.slides)
def strains_eyes(self):
"""Determines if the slides will cause eye strain"""
return any(s.strains_eyes() for s in self.slides)