- Kivy Blueprints
- Mark Vasilkov
- 327字
- 2021-08-06 19:18:44
Write once, run anywhere
This whole situation creates a demand for a universal, multi-platform way to program. The problem isn't exactly new: one solution to it, created by Sun in 1995, is the Java programming language. Its marketing promise—write once, run anywhere—was never fulfilled and the language itself is unreasonably cumbersome to use. This led to many mocking variations of the slogan, culminating with write once, run away that refers to many developers abandoning Java in favor of better programming languages, including Python.
Not coincidentally, Kivy—the main topic of this book—is a graphical user interface library facilitating easy creation of multi-platform Python applications. The main features of Kivy toolkit are as follows:
- Compatibility: Kivy-based apps work in Linux, Mac OS X, Windows, Android, and iOS—all from a single codebase.
- Natural user interface: Kivy bridges the gap between different input methods, allowing you to handle a multitude of possible user interactions with similar code, mouse events and multitouch gestures alike.
- Fast hardware-accelerated graphics: OpenGL rendering makes Kivy suitable for creating graphics-heavy applications such as videogames, and also improves the user experience with smooth transitions.
- The use of Python: Kivy apps are written in Python, one of the better general purpose programming languages. In addition to being inherently portable, expressive, and readable, Python features a useful standard library and a rich ecosystem of third-party packages, the Python Package Index (PyPI).
Speaking of third-party packages, Kivy can be seen as a superset of many battle-tested components: a large part of its functionality relies on well-known libraries such as Pygame, SDL, and GStreamer. The API that Kivy exposes, however, is very high-level and unified.
It's worth mentioning that Kivy is free and open source MIT licensed software. In practice, this means that you can use it commercially without paying licensing fees. Its full source code is hosted on GitHub, so you can also patch bugs or add new features to it.
- Oracle WebLogic Server 12c:First Look
- jQuery Mobile Web Development Essentials(Third Edition)
- 自己動手實現Lua:虛擬機、編譯器和標準庫
- Python從入門到精通(精粹版)
- Java深入解析:透析Java本質的36個話題
- Python數據分析(第2版)
- SQL Server 2016數據庫應用與開發習題解答與上機指導
- Python數據結構與算法(視頻教學版)
- 快人一步:系統性能提高之道
- 執劍而舞:用代碼創作藝術
- C專家編程
- JavaScript腳本特效編程給力起飛
- 代替VBA!用Python輕松實現Excel編程
- Python語言科研繪圖與學術圖表繪制從入門到精通
- Natural Language Processing with Python Quick Start Guide