Kivy: Building GUI and Mobile apps with Python
Intro
Python library
- for building gui apps (think qt, gdk,processing)
- build from ground up for latest tech like gpu/GLes, multi-touch
- core parts (rendering, events/properties) written in c/cython
Community
- great and active community on ML, IRC, github
- good mix of hackers, professional/business, and student users
- great documentation (with some translation even)
Some showcase apps screenshots
- mobile, same app on iOS and android
- large display / multit-touch
- desktop / presentation app being used (love the metaness)
Main Features
Pure GPU accelerated rendering
- graphics compiler architecture, a sort of JIT for drawing instructions
- all rendering using opengl ES
- runs mostly anywhere these days
- render pipeline uses shaders, vbo, fbo, etc
- very powerful for experienced GL hackers
Cross Platform
- Linux, OSX, Windows, android, iOS
- runs, and support each systems input events
- input events are mapped to generic ones
- custom/platform specific data still accessible
- Mobile: same python app on iOS and android
- build straight to package
- accepted apps on apple and google app stores
- Supports new and future Input Devices
- classic GUI toolkits are build on mouse/keyboard paradigm
- Kivy widgets are multi-touch/pointer from start
- Also does Mouse/Keyboard well, native + virtual keyboard
Simple but Powerful Widget Tree
- Property/Event autobinding
- widget properties automatically create events when changed
- binding keeps data <--> view in sync
- Collection of easily customizable base widgets:
- labels, images, buttons, layout, text-input, etc
KV language
- Seriously an additional DSL?
- Yes, but dont worry...its pythonic and you will love it
- Makes certain UI building tasks very easy and efficient
- automatic property binding
- quick wireframing, working prototype for production
- styling/customization of specific / custom widgets classes
Where to go next
Website:
- http://kivy.org
- http://kivy.org/docs
Getting involved:
- #kivy on freenode
- kivy-users@googlegroups.com
- kivy-dev@googlegroups.com
- http://github.com/kivy
Kivy: Building GUI and Mobile apps with Python的更多相关文章
- 第七篇——Mobile Apps,软件的曙光。
作业三: ShrinkWrap (在包装盒子里面的软件,软件在CD/DVD上): Web APP (基于网页的软件): Internal Software (企业或学校或某组织内部的软件): Game ...
- 会写网页 就会写手机APP -- Hybrid Mobile Apps for ASP.NET Developers
您好,这篇文章是我的BLOG发出,原始出处在此: 会写网页 就会写手机APP -- Hybrid Mobile Apps for ASP.NET Developers http://www.dotbl ...
- 会写网页 就会写手机APP #2-- 范例修正 , Hybrid Mobile Apps for ASP.NET Developers (Apache Cordova)
原文出处:会写网页 就会写手机APP #2-- 范例修正 , Hybrid Mobile Apps for ASP.NET Developers (Apache Cordova) 这是我的文章备份 ...
- Visual Studio 2017 and Apache Cordova mobile apps | Andrés Zsögön
原文:Visual Studio 2017 and Apache Cordova mobile apps | Andrés Zsögön 以下是使用Microsoft Visual Studio 20 ...
- 【HTTP】Speed and Mobility: An Approach for HTTP 2.0 to Make Mobile Apps and the Web Faster
This week begins face to face meetings at the IETF on how to approach HTTP 2.0 and improve the Inter ...
- 如何在Windows下开发Python:在cmd下运行Python脚本+如何使用Python Shell(command line模式和GUI模式)+如何使用Python IDE
http://www.crifan.com/how_to_do_python_development_under_windows_environment/ 本文目的 希望对于,如何在Windows下, ...
- python gui tkinter快速入门教程 | python tkinter tutorial
本文首发于个人博客https://kezunlin.me/post/d5c57f56/,欢迎阅读最新内容! python tkinter tutorial Guide main ui messageb ...
- 菜鸟试做GUI简单数据库查询界面 python+tkinter+mysql
一.准备工作: 1.安装mysql3.7,创建一个test数据库,创建student表,创建列:(列名看代码),创建几条数据 (以上工作直接用navicat for mysql工具完成) 二.代码: ...
- ionic:Build mobile apps faster with the web technologies you know and love
http://ionicframework.com/getting-started/ 5 Ionic Framework App Development Tips and Tricks http:// ...
随机推荐
- BOM对象,math对象document对象的属性和操作和 事件的基本操作
Math对象 //该对象中的属性方法 和数学有关. abs(x) 返回数的绝对值. exp(x) 返回 e 的指数. floor(x) 对数进行下舍入. log(x) 返回数的自然对数(底为e). m ...
- C# 并行 反射 去掉实体属性多余空格
有时会遇到很多不合理的数据附件到实体后有大量空格需要处理,这里提供一个方法,通过并行反射的方式高效清理空格. Code: //清除字符串空格 public static object ...
- node-inspector使用方法
开发node.js程序使用的是javascript语言,其中最麻烦的还是调试,这里介绍一下node-inspector使用方法.具体资料可以看参考资料中的GITHUB文档. 方法/步骤 使用命令$ ...
- QT5.6.0 鼠标支持
QT5用QPA换了QWS之后,USB鼠标就不知道怎么支持,网上搜啊搜,各种尝试,终于可以了. export TSLIB_ROOT=/mnt/sdcard/tslib export TSLIB_PLUG ...
- git报错--RPC failed; curl 18 transfer closed with outstanding read data remaining
遇到的问题一: error: RPC failed; curl 18 transfer closed with outstanding read data remaining fata ...
- Python3.x:pdf2htmlEX(解析pdf)安装和使用
Python3.x:pdf2htmlEX(解析pdf)安装和使用 简介 pdf2htmlEX是一款优秀的pdf转换成html的工具: 下载 windows下载地址:http://soft.rubypd ...
- Apache 虚拟主机配置
开放虚拟主机文件 修改主配置文件 解开注释,使用虚拟主机配置文件. vim /usr/local/apache2/conf/httpd.conf Include conf/extra/httpd-vh ...
- github Git-fork-别人的项目后更新代码的方法
用github还处于菜的阶段,遇到问题简单记录. 举个例子,需要 fork 这个项目 https://github.com/tarobjtu/WebFundamentals.git 点击 for ...
- C++中int转为char 以及int 转为string和string 转int和字符串的split
1.对于int 转为char 直接上代码: 正确做法: void toChar(int b) { char u; ]; _itoa( b, buffer, ); //正确解法一 u = buffer[ ...
- Spring AOP(1)