PyObjC: Difference between revisions
→External links: Replaced "official website" link with what the earlier address was redirecting to. |
→See also: Adding wikilink |
||
(21 intermediate revisions by 10 users not shown) | |||
Line 1: | Line 1: | ||
{{ |
{{More citations needed|date=November 2014}} |
||
{{Infobox |
{{Infobox software |
||
| logo = |
| logo = |
||
| screenshot = |
| screenshot = |
||
| caption = The Python <-> Objective-C Bridge |
| caption = The Python <-> Objective-C Bridge |
||
| developer = Ronald Oussoren, Bill Bumgarner, Steve Majewski |
| author = Lele Gaifax |
||
| developer = Ronald Oussoren, Bill Bumgarner, Steve Majewski, et al. |
|||
| released = {{Start date and age|1996|09}} |
|||
| latest release version = 2.5.1 |
|||
| latest release |
| latest release version = 5.2 |
||
| latest release date = {{Start date and age|2019|04|03}}<ref>{{cite web |title=pyobjc |url=https://pypi.python.org/pypi/pyobjc |website=[[Python Package Index]] |accessdate=2019-04-21}}</ref> |
|||
| latest preview version = |
| latest preview version = |
||
| latest preview date = |
| latest preview date = |
||
Line 12: | Line 14: | ||
| programming language = [[Python (programming language)|Python]] |
| programming language = [[Python (programming language)|Python]] |
||
| genre = |
| genre = |
||
| license = [ |
| license = [[MIT License]] |
||
| website |
| website = {{URL|https://pyobjc.readthedocs.io/en/latest/}} |
||
}} |
}} |
||
'''PyObjC''' is a bidirectional bridge between the [[Python (programming language)|Python]] and [[Objective-C]] programming languages, allowing programmers to use and extend existing Objective-C [[library (computer science)|libraries]], such as [[ |
'''PyObjC''' is a bidirectional bridge between the [[Python (programming language)|Python]] and [[Objective-C]] programming languages, allowing programmers to use and extend existing Objective-C [[library (computer science)|libraries]], such as [[Apple Inc.|Apple]]'s [[Cocoa (API)|Cocoa]] [[Application framework|framework]], using Python. |
||
PyObjC is used to develop [[ |
PyObjC is used to develop [[macOS]] applications in pure Python. |
||
There is also limited support for [[GNUstep]], an open source, cross-platform [[Implementation# |
There is also limited support for [[GNUstep]], an open source, cross-platform [[Implementation#Computer Science|implementation]] of Cocoa. |
||
==For Python programmers== |
==For Python programmers== |
||
The most important usage of PyObjC is enabling programmers to create [[GUI]] applications using Cocoa libraries in pure Python. Moreover, as an effect of Objective-C's close relationship with the [[ |
The most important usage of PyObjC is enabling programmers to create [[GUI]] applications using Cocoa libraries in pure Python.<ref>{{cite web |url = https://pyobjc.readthedocs.io/en/latest/ |title = PyObjC Introduction |accessdate = 2018-08-05}}</ref> Moreover, as an effect of Objective-C's close relationship with the [[C (programming language)|C]] programming language (it is a pure superset), developers are also able to incorporate any C-based [[API]] by [[Adapter pattern|wrapping it]] with an Objective-C wrapper and then using the wrapped code over the PyObjC bridge. Using [[Objective-C#Objective-C.2B.2B|Objective-C++]], the same can be done with [[C%2B%2B]] libraries. |
||
==For Objective-C programmers== |
==For Objective-C programmers== |
||
Line 28: | Line 30: | ||
==History== |
==History== |
||
PyObjC's origins date back to 1996, when Lele Gaifax built the original module in September of that year. Among the credited contributors were Guido van Rossum, creator of the Python programming language. |
PyObjC's origins date back to 1996, when Lele Gaifax built the original module in September of that year.<ref>{{cite web |url = https://opensource.apple.com/source/pyobjc/pyobjc-32/2.5/pyobjc/pyobjc-core/HISTORIC.txt.auto.html |title = PyObjC HISTORIC.txt |date = 2002-10-12 |accessdate = 2017-09-29}}</ref> Among the credited contributors were Guido van Rossum, creator of the Python programming language. |
||
PyObjC was rewritten in 2002. Notable additions include the ability to directly subclass Objective-C classes from Python and nearly complete support for the Foundation, App Kit and Address Book frameworks. |
PyObjC was rewritten in 2002. Notable additions include the ability to directly subclass Objective-C classes from Python and nearly complete support for the Foundation, App Kit and Address Book frameworks. |
||
Later the same year, support was added for non-framework Python builds, as well as subsequent support for the Python distribution included with OS X. Along with these changes came project templates for standalone Cocoa applications for use with [[Project Builder]], the predecessor to the current Apple platform [[ |
Later the same year, support was added for non-framework Python builds, as well as subsequent support for the Python distribution included with [[macOS|Mac OS X]]. Along with these changes came project templates for standalone Cocoa applications for use with [[Project Builder]], the predecessor to the current Apple platform [[Integrated development environment|IDE]], [[Xcode]]. |
||
Apple incorporated PyObjC into OS X in 2007, with the release of [[ |
Apple incorporated PyObjC into Mac OS X in 2007, with the release of [[Mac OS X Leopard |Mac OS X 10.5 Leopard]].<ref>{{cite web |url = https://opensource.apple.com/source/pyobjc/pyobjc-26/pyobjc/pyobjc-website/enwiki/static/downloads.rst.auto.html |title = PyObjC downloads.rst |accessdate = 2017-09-29 }}</ref> |
||
==Messages and methods== |
==Messages and methods== |
||
Line 41: | Line 43: | ||
The syntax for these message expressions is inherited from Smalltalk, and appears as an object, called the receiver, placed to the left of the name of the message, or selector, and both are enclosed within a pair of square brackets (the square bracket syntax is not inherited from Smalltalk). Colons within a selector indicate that it accepts one or more arguments, one for each colon. Intended to improve code readability, colons are placed within the selector such that when the required arguments are in place, the expression's intent is unambiguous: |
The syntax for these message expressions is inherited from Smalltalk, and appears as an object, called the receiver, placed to the left of the name of the message, or selector, and both are enclosed within a pair of square brackets (the square bracket syntax is not inherited from Smalltalk). Colons within a selector indicate that it accepts one or more arguments, one for each colon. Intended to improve code readability, colons are placed within the selector such that when the required arguments are in place, the expression's intent is unambiguous: |
||
< |
<syntaxhighlight lang ="objc"> |
||
[myLittleDuck makeSomeNoise:quack eyesClosed:@YES onOneFoot:@YES]; |
[myLittleDuck makeSomeNoise:quack eyesClosed:@YES onOneFoot:@YES]; |
||
</syntaxhighlight> |
|||
</source> |
|||
This is distinct from the syntax used in Python, and in many other languages, where an equivalent expression would read: |
This is distinct from the syntax used in Python, and in many other languages, where an equivalent expression would read: |
||
< |
<syntaxhighlight lang="python"> |
||
myLittleDuck.makeSomeNoise_eyesClosed_onOneFoot_(quack, True, True) |
myLittleDuck.makeSomeNoise_eyesClosed_onOneFoot_(quack, True, True) |
||
</syntaxhighlight> |
|||
</source> |
|||
Translating Objective-C selectors to Python method names is accomplished by replacing each colon with a single underscore and listing the arguments within a pair of parentheses at the end, as demonstrated above. |
Translating Objective-C selectors to Python method names is accomplished by replacing each colon with a single underscore and listing the arguments within a pair of parentheses at the end, as demonstrated above. |
||
Line 56: | Line 58: | ||
Objective-C classes are subclassed in the same manner as a normal Python class: |
Objective-C classes are subclassed in the same manner as a normal Python class: |
||
< |
<syntaxhighlight lang="python"> |
||
class MyDuck(NSObject): # NSObject is a base Objective-C class. |
class MyDuck(NSObject): # NSObject is a base Objective-C class. |
||
def init(self): |
def init(self): |
||
Line 66: | Line 68: | ||
myLittleDuckOne = MyDuck.alloc().init() |
myLittleDuckOne = MyDuck.alloc().init() |
||
</syntaxhighlight> |
|||
</source> |
|||
==See also== |
==See also== |
||
{{Portal|Free and open-source software}} |
|||
* [[libffi]] |
|||
* [[RubyCocoa]] |
|||
==References== |
|||
{{Reflist}} |
|||
==External links== |
==External links== |
||
*{{official website |
*{{official website}} |
||
*[http://python.6.n6.nabble.com/a-word-of-warning-for-pyobjc-users-td2154477.html Ronald Oussoren's warning on Xcode 4.0] |
*[http://python.6.n6.nabble.com/a-word-of-warning-for-pyobjc-users-td2154477.html Ronald Oussoren's warning on Xcode 4.0] |
||
{{DEFAULTSORT:Pyobjc}} |
{{DEFAULTSORT:Pyobjc}} |
||
[[Category:Python libraries]] |
[[Category:Python (programming language) libraries]] |
||
[[Category: |
[[Category:MacOS programming tools]] |
Latest revision as of 06:54, 25 November 2021
This article needs additional citations for verification. (November 2014) |
Original author(s) | Lele Gaifax |
---|---|
Developer(s) | Ronald Oussoren, Bill Bumgarner, Steve Majewski, et al. |
Initial release | September 1996 |
Stable release | 5.2
/ April 3, 2019[1] |
Repository | |
Written in | Python |
Operating system | Cross-platform |
License | MIT License |
Website | pyobjc |
PyObjC is a bidirectional bridge between the Python and Objective-C programming languages, allowing programmers to use and extend existing Objective-C libraries, such as Apple's Cocoa framework, using Python.
PyObjC is used to develop macOS applications in pure Python.
There is also limited support for GNUstep, an open source, cross-platform implementation of Cocoa.
For Python programmers
[edit]The most important usage of PyObjC is enabling programmers to create GUI applications using Cocoa libraries in pure Python.[2] Moreover, as an effect of Objective-C's close relationship with the C programming language (it is a pure superset), developers are also able to incorporate any C-based API by wrapping it with an Objective-C wrapper and then using the wrapped code over the PyObjC bridge. Using Objective-C++, the same can be done with C++ libraries.
For Objective-C programmers
[edit]Cocoa developers may also benefit, as tasks written in Python generally take fewer lines than the Objective-C equivalent. This can be used to their advantage as it enables faster prototyping.
History
[edit]PyObjC's origins date back to 1996, when Lele Gaifax built the original module in September of that year.[3] Among the credited contributors were Guido van Rossum, creator of the Python programming language.
PyObjC was rewritten in 2002. Notable additions include the ability to directly subclass Objective-C classes from Python and nearly complete support for the Foundation, App Kit and Address Book frameworks.
Later the same year, support was added for non-framework Python builds, as well as subsequent support for the Python distribution included with Mac OS X. Along with these changes came project templates for standalone Cocoa applications for use with Project Builder, the predecessor to the current Apple platform IDE, Xcode.
Apple incorporated PyObjC into Mac OS X in 2007, with the release of Mac OS X 10.5 Leopard.[4]
Messages and methods
[edit]In Objective-C, objects communicate with each other by sending messages, which is analogous to method calls in other object-oriented languages. When an object receives a message, it looks up the message's name, or selector, and matches it up with a method designated the same selector, which it then invokes.
The syntax for these message expressions is inherited from Smalltalk, and appears as an object, called the receiver, placed to the left of the name of the message, or selector, and both are enclosed within a pair of square brackets (the square bracket syntax is not inherited from Smalltalk). Colons within a selector indicate that it accepts one or more arguments, one for each colon. Intended to improve code readability, colons are placed within the selector such that when the required arguments are in place, the expression's intent is unambiguous:
[myLittleDuck makeSomeNoise:quack eyesClosed:@YES onOneFoot:@YES];
This is distinct from the syntax used in Python, and in many other languages, where an equivalent expression would read:
myLittleDuck.makeSomeNoise_eyesClosed_onOneFoot_(quack, True, True)
Translating Objective-C selectors to Python method names is accomplished by replacing each colon with a single underscore and listing the arguments within a pair of parentheses at the end, as demonstrated above.
Classes
[edit]Objective-C classes are subclassed in the same manner as a normal Python class:
class MyDuck(NSObject): # NSObject is a base Objective-C class.
def init(self):
self = super(MyDuck, self).init() # An Objective-C idiom, wherein the
# subclass instance, self, is instantiated
# by sending the superclass its
# designated initializer.
return self
myLittleDuckOne = MyDuck.alloc().init()
See also
[edit]References
[edit]- ^ "pyobjc". Python Package Index. Retrieved 2019-04-21.
- ^ "PyObjC Introduction". Retrieved 2018-08-05.
- ^ "PyObjC HISTORIC.txt". 2002-10-12. Retrieved 2017-09-29.
- ^ "PyObjC downloads.rst". Retrieved 2017-09-29.