Python-tvOS-template
Python-tvOS-template copied to clipboard
A cookiecutter template for creating a tvOS project running Python code.
Python tvOS Template
A template for building Python apps that will run under Apple tvOS.
Using this template
-
Install
cookiecutter_. This is a tool used to bootstrap complex project templates::$ pip install cookiecutter
-
Run
cookiecutteron the Python-tvOS template::$ cookiecutter https://github.com/pybee/Python-tvOS-template
-
Download the Python tvOS support package_, and extract it. This will give you two frameworks.-
OpenSSL.framework -
Python.framework
Alternatively, you can download the
Python-iOS-support_ project, and build your own versions of the tvOS frameworks.These framework directories should be placed in the same directory as the
appandapp_packagesdirectories generated by the cookiecutter project template. -
If you've done this correctly, a project called myproject should have a
directory structure that looks something like::
iOS/
app/
myproject/
__init__.py
main.py
app_packages/
OpenSSL.framework/
...
Python.framework/
...
myproject/
...
My Project.xcodeproj/
...
You're now ready to open the XCode project file, build and run your project!
Next steps
Of course, just running Python code isn't very interesting by itself - you'll be able to output to the console, and see that output in XCode, but if you tap the app icon on your phone, you won't see anything - because there isn't a visible console on an iPhone.
To do something interesting, you'll need to work with the native tvOS system
libraries to draw widgets and respond to screen taps. The Rubicon_
Objective C bridging library can be used to enable an easy interface with the
tvOS system libraries. You could also use the toga_ library to provides a
cross-platform widget toolkit that supports tvOS.
Regardless of whether you use Toga, or you write an application natively, the
template project will try to instantiate a UIApplicationMain instance,
using a class named PythonAppDelegate as the App delegate. If a class of
that name can't be instantiated, the error raised will be logged, and the
Python interpreter will be shut down.
If you have any external library dependencies (like toga, or anything other
third-party library), you should install the library code into the
app_packages directory. This directory is the same as a site_packages
directory on a desktop Python install.
It's also worth noting that the app and app_packages code don't need
to contain the actual code. If it's more convenient to keep the code
somewhere else, you can symlink to the actual code inside the app or
app_packages directory. At compile time, the symlink will be resolved and
copied to the app bundle, but during development, you can avoid having copies
of code in your source repositories.
One pattern for doing this is to have a top level project directory that contains the source module, and an iOS directory at the same level that links in the project source::
myproject/
iOS/
app/
myproject -> ../../myproject
...
myproject/
__init__.py
main.py
other.py
setup.py
.. _cookiecutter: http://github.com/audreyr/cookiecutter .. _Download the Python tvOS support package: https://github.com/pybee/Python-iOS-support/releases/download/3.4.2-b4/Python-3.4.2-tvOS-support.b4.tar.gz .. _Python-iOS-support: http://github.com/pybee/Python-iOS-support .. _toga: http://pybee.org/toga .. _Rubicon: http://github.com/pybee/rubicon-objc