﻿<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3A2.4%2FSource%2FPython%2FPython_architecture</id>
	<title>Dev:2.4/Source/Python/Python architecture - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3A2.4%2FSource%2FPython%2FPython_architecture"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:2.4/Source/Python/Python_architecture&amp;action=history"/>
	<updated>2026-06-07T21:16:20Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:2.4/Source/Python/Python_architecture&amp;diff=42558&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:2.4/Source/Python/Python_architecture&amp;diff=42558&amp;oldid=prev"/>
		<updated>2018-06-28T17:45:36Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;2018年6月28日 (木) 17:45時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Yamyam</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:2.4/Source/Python/Python_architecture&amp;diff=42557&amp;oldid=prev</id>
		<title>wiki&gt;Mindrones bot: Bot: Fixing redirects</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:2.4/Source/Python/Python_architecture&amp;diff=42557&amp;oldid=prev"/>
		<updated>2010-05-27T08:26:03Z</updated>

		<summary type="html">&lt;p&gt;Bot: Fixing redirects&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;There will be a session on this in the 2004 conference. This is to prepare for that, so that we would get most out of the session.&lt;br /&gt;
&lt;br /&gt;
==Issues==&lt;br /&gt;
&lt;br /&gt;
1. current API&lt;br /&gt;
&lt;br /&gt;
MichelSelten re-wrote. started from Object module, other came in for World etc.&lt;br /&gt;
&lt;br /&gt;
CampbellBarton involved in C, written several plugins, change?&lt;br /&gt;
&lt;br /&gt;
2. making new API&lt;br /&gt;
&lt;br /&gt;
BlendIt&lt;br /&gt;
&lt;br /&gt;
3. extending/embedding&lt;br /&gt;
&lt;br /&gt;
at least exposing as much of Blender to Python as possible (is the current 'organic' mode, driven by the needs of the scriptwriters)&lt;br /&gt;
&lt;br /&gt;
- tough ones: event propagation, ..?&lt;br /&gt;
&lt;br /&gt;
The purpose of this is studying the ways Python is becoming integrated into Blender, and finding strategies to do it well in the future.&lt;br /&gt;
&lt;br /&gt;
==Background==&lt;br /&gt;
&lt;br /&gt;
Currently, Blender ''mbeds'' Python. This means that the interpreter is included in the application, which provides an API that can be used for scripting within the application itself. This has been quite succesfull, as the growing number of useful scripts demonstrate. The API is expanding continuously, and people are experimenting with new kinds of functionality made in Python. Interesting recent examples of this include enchancing the OOPS window by Campbell Barton and using the Draw module for creating customizable GUIs through the Python API.&lt;br /&gt;
&lt;br /&gt;
==The problem?==&lt;br /&gt;
&lt;br /&gt;
There are several things that can't be done via Python, and (potential) developers are continuously facing the problem that functionality that is available and defined in the components written in C are unavailable from Python. Sometimes it is almost like a race: new features are added to the core, someone wants to use them from Python but can't, and then again someone needs to add new hooks the the Python API. Could and should something be done about this? Or is the current mode of development ok for the future too?&lt;br /&gt;
&lt;br /&gt;
(is this a / the problem, what others are there?)&lt;br /&gt;
&lt;br /&gt;
==Solutions==&lt;br /&gt;
&lt;br /&gt;
An extreme approach is [[Dev:2.4/Source/Python/Python-Blender|PythonBlender]] -- i.e. refactoring Blender to so-called ''xtend'' Python. There one perspective is using parts of Blender outside it for other apps, but that is perhaps not so interesting .. as Blender is first of all an integrated and nice application for modelling, animating etc., and not a library for making other tools, the primary target here is to enhance Blender itself. That is, the main thing regarding Python architecture is to make it so that Blender may become better.  (...)&lt;br /&gt;
&lt;br /&gt;
What else? Continue with bpython as it is ..?&lt;br /&gt;
&lt;br /&gt;
http://www.blender3d.org/cms/Theo_de_Ridder.459.0.html will present an interesting angle to this, with critique of the current API and a (I find) fascinating alternative (currently made as a wrapper on top of the bpy API)&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [http://projects.blender.org/pipermail/bf-committers/2003-September/004070.html Blender 2.5+ Roadmap (Proposal)] by Michel Selten (+ comments by others on bf-committers)&lt;br /&gt;
&lt;br /&gt;
* [http://www.blender3d.org/cms/Blender_Architecture.336.0.html Blender architecture]&lt;br /&gt;
&lt;br /&gt;
* historical: initial [http://www.blender.org/modules/documentation/intranet/docs/develop/python/api-proposal.html Development of the Python API and the Python Toolbox]&lt;br /&gt;
&lt;br /&gt;
-- [[DeveloperWiki/ToniAlatalo|ToniAlatalo]] - 27 Sep 2004&lt;br /&gt;
&lt;br /&gt;
[[Category:Python]]&lt;br /&gt;
[[Category:Requests]]&lt;br /&gt;
[[Category:Architecture]]&lt;/div&gt;</summary>
		<author><name>wiki&gt;Mindrones bot</name></author>
		
	</entry>
</feed>