翻訳と辞書
Words near each other
・ Kiwil
・ Kiwili
・ Kiwira
・ Kiwira River
・ KiwiRail
・ KiwiRail Scenic Journeys
・ Kiwirrkurra Community, Western Australia
・ KiwiSAT
・ KiwiSaver
・ Kiwitachys
・ Kivuti Maxwell
・ Kivuto Solutions Inc
・ Kivuusama Mays
・ KivuWatt Power Station
・ KIVY
Kivy
・ KIVY (AM)
・ KIVY-FM
・ KIVY-LD
・ Kivyihusha
・ Kivyliai
・ Kiwa
・ KIWA (AM)
・ Kiwa (electronic music act)
・ Kiwa (mythology)
・ Kiwa hirsuta
・ Kiwa puravida
・ Kiwa Station
・ Kiwa Station (Wakayama)
・ Kiwa Station (Yamaguchi)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Kivy : ウィキペディア英語版
Kivy

Kivy is an open source Python library for developing mobile apps and other multitouch application software with a natural user interface (NUI). It can run on Android, iOS, Linux, OS X, and Windows. Distributed under the terms of the MIT license, Kivy is free and open source software.
Kivy is the main framework developed by the Kivy organization, alongside Python for Android, Kivy iOS, and several other libraries meant to be used on all platforms. In 2012, Kivy got a $5000 grant from the Python Software Foundation for porting it to Python 3.3. Kivy also supports the Raspberry Pi which was funded through Bountysource.
The framework contains all the elements for building an application such as:
* extensive input support for mouse, keyboard, TUIO, and OS-specific multitouch events,
* a graphic library using only OpenGL ES 2, and based on Vertex Buffer Object and shaders,
* a wide range of Widgets that support multitouch,
* an intermediate language (Kv) used to easily design custom Widgets.
Kivy is the evolution of the (PyMT project ), and is recommended for new projects.
== Code example ==
Here is an example of the Hello world program with just one button:

from kivy.app import App
from kivy.uix.button import Button
class TestApp(App):
def build(self):
return Button(text='Hello World')
TestApp().run()


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Kivy」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.