Last active
August 29, 2015 13:56
-
-
Save apua/8999170 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PythonConference(AbstractConference): | |
'''from everything import future''' | |
def call_for_proposal(self): | |
'''只要您有任何與 Python 相關之應用或研究, 歡迎提出議程分享''' | |
self.listen_proposals(target=self.queue, deadline=self.講題徵求截止日) | |
PyConAPAC2014 = PythonConference( | |
活動全名 = "Python Conference APAC 2014" , | |
活動時間 = (date(2014,5,17), date(2014,5,18)) , | |
活動地點 = "台灣中央研究院人文社會科學館" , | |
官方網站 = "http://tw.pycon.org/2014apac" , | |
講題徵求截止日 = date(2014,3,1) ) | |
PyConAPAC2014.call_for_proposal() # \(^o ^)/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment