Skip to main content

PyConZA 2014 Registration Open



PyConZA is coming to Johannesburg.

After two successful conferences in Cape Town, it’s time for PyConZA to spread its wings and head north for this year’s national gathering of Python software developers, which is taking place at The Forum in Bryanston on the 2 & 3 October.

Ticket sales are open! Early bird tickets available while stocks last!

Talk submissions are already flowing in for this year’s PyConZA -- so if you’d like to speak, please submit a talk now! Topics submitted include: the IPython Notebook, using Python in Blender, repurposing old telescopes with new Python software, a Pygame tutorial, rethinking building Python web applications, a practical introduction to advanced testing strategies, building the internet of things using Raspberry Pis, and building Python communities in Africa. This year we also have a mentor program for new speakers.

Come and join us!

"""Usage: %s %s attendee|speaker|sponsor"""

import webbrowser
import sys
import os

roles = set(x.lower() for x in sys.argv[1:])
valid = set([
    "attendee", "speaker", "sponsor",
    "antigravity", "this",
])

if not roles or roles - valid:
    python = os.path.basename(sys.executable)
    print(__doc__ % (python, sys.argv[0]))
    sys.exit(1)

if "attendee" in roles:
    webbrowser.open("https://za.pycon.org/about/buy-tickets")
if "speaker" in roles:
    webbrowser.open("https://za.pycon.org/talks/submit-talk")
if "sponsor" in roles:
    webbrowser.open("https://za.pycon.org/sponsors/packages/")
if "antigravity" in roles:
    import antigravity  # easter egg 1
    del antigravity  # make pyflakes happy
if "this" in roles:
    import this  # side effects are fun
    del this  # :)

Email team@za.pycon.org or import antigravity if you encounter difficulties.

Comments