1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807 | ========================================
RubyistのためのDjango入門
========================================
自己紹介
-------------------------
岡野真也(tokibito/nullpobug)
- プログラミング歴6年ぐらい
- Delphi/Python信者
- Ruby/PHPを仕事で使う
Djangoって何だ
-------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
Django
--------------------------
- 発音は「じゃんご」
- Pythonで書かれたオープンソースのWebフレームワーク
- djangoproject.com_
.. _djangoproject.com: http://www.djangoproject.com/
Python?
-------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
Python
-------------------------
- オブジェクト指向
- スクリプト言語
- マルチプラットフォーム
- 作者Guido van Rossum
FizzBuzz
-------------------------
.. sourcecode:: python
for i in range(1, 100):
if i % 15 == 0:
print "FizzBuzz"
elif i % 3 == 0:
print "Fizz"
elif i % 5 == 0:
print "Buzz"
else:
print i
リスト
-------------------------
.. sourcecode:: python
>>> a = [1, 2, 3, 4, 5]
>>> a[0]
1
>>> a[2:]
[3, 4, 5]
>>> a[-1]
5
>>> b = [1, [2, 3], 4, 5]
>>> b[1][0]
2
>>> b[1:3]
[[2, 3], 4]
辞書
-------------------------
.. sourcecode:: python
>>> a = {'hoge': 1, 'fuga': 'ruby'}
>>> a['hoge']
1
>>> a['fuga']
'ruby'
クラス
---------------------------
.. sourcecode:: python
class MyClass(object):
def __init__(self):
self.hoge = 'fuga'
def say_foo(self):
print 'foo'
myinst = MyClass()
print myinst.hoge
myinst.say_foo()
ところで
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
Rubyistのための?
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
Rubyistのための?
---------------------------
- Ruby以外の言語
- Rails以外のフレームワーク
- Ruby vs Python
RubyistにPythonを知ってほしい!
では、特徴を説明する前に
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
実績を見てもらおうかと
---------------------------
.. s6.page({
styleBase: 'takahashi'
});
Djangoの実績
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade',
styles: {
'h2[0]': { display: 'none' }
},
actions: [
[
['h2[0]', 'move', 0.4, [8, 45], [0, 45]],
['h2[0]', 'fade in', 0.4]
]
]
});
LJWorld.com
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
LJWorld.com
--------------------------------------------
http://www2.ljworld.com/
.. s6.page({
backgroundImage: 'http://tkhp.tokibito.wsgiapp.com/static/img/presentation/page_ljworld.png',
styles: {
'h2[0]': { display: 'none' },
'p[0]': { background: '#1b610c', margin: '65% 0 0 0' }
}
});
ReviewBoard
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
ReviewBoard
--------------------------------------------
http://review-board.org/
.. s6.page({
backgroundImage: 'http://tkhp.tokibito.wsgiapp.com/static/img/presentation/page_reviewboard.png',
styles: {
'h2[0]': { display: 'none' },
'p[0]': { background: '#1b610c', margin: '65% 0 0 0' }
}
});
Google App Engine
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
Google App Engine
--------------------------------------------
http://code.google.com/appengine/
.. s6.page({
backgroundImage: 'http://tkhp.tokibito.wsgiapp.com/static/img/presentation/page_googleappengine.png',
styles: {
'h2[0]': { display: 'none' },
'p[0]': { background: '#1b610c', margin: '65% 0 0 0', fontSize: '70%' }
}
});
どう書く?.org
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
どう書く?.org
--------------------------------------------
http://ja.doukaku.org/
.. s6.page({
backgroundImage: 'http://tkhp.tokibito.wsgiapp.com/static/img/presentation/page_doukaku.png',
styles: {
'h2[0]': { display: 'none' },
'p[0]': { background: '#1b610c', margin: '65% 0 0 0' }
}
});
gumi
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
gumi
--------------------------------------------
http://gu3.jp/
.. s6.page({
backgroundImage: 'http://tkhp.tokibito.wsgiapp.com/static/img/presentation/page_gumi.png',
styles: {
'h2[0]': { display: 'none' },
'p[0]': { background: '#1b610c', margin: '65% 0 0 0' }
}
});
monologista
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
monologista
--------------------------------------------
http://monologista.jp/
.. s6.page({
backgroundImage: 'http://tkhp.tokibito.wsgiapp.com/static/img/presentation/page_monologista.png',
styles: {
'h2[0]': { display: 'none' },
'p[0]': { background: '#1b610c', margin: '65% 0 0 0' }
}
});
Djangoの特徴
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade',
styles: {
'h2[0]': { display: 'none' }
},
actions: [
[
['h2[0]', 'move', 0.4, [8, 45], [0, 45]],
['h2[0]', 'fade in', 0.4]
]
]
});
特徴
---------------------------
- Model-Template-View
- O/Rマッパー
- 正規表現を用いたURL設計
- 強力なテンプレートエンジン
- ビュー関数
特徴
---------------------------
- 汎用ビュー
- カッコいい管理画面
- フォーム生成とバリデーション
- 開発用サーバ
- 動作が高速
特徴
---------------------------
- 国際化対応(i18n)
- 再利用性の高いプロジェクト構造
Model-Template-View
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
Model-View-Template
---------------------------
DjangoのMVCモデルの解釈
- Model -> Model
- Template -> View
- View -> Controller
O/Rマッパー
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
テーブルの作成
---------------------------
- モデルを書く
- manage.py syncdbを実行
モデル
---------------------------
.. sourcecode:: python
from django.db import models
from datetime import datetime
class Tag(models.Model):
name = models.CharField(max_length=50)
class Entry(models.Model):
title = models.CharField(max_length=100)
content = models.TextField()
pub_date = models.DateTimeField(default=datetime.now)
tags = models.ManyToManyField(Tag, blank=True)
モデル
--------------------------
.. sourcecode:: python
from models import Entry
entry = Entry() # Entryオブジェクトを作成
entry.title = u"Ruby勉強会"
entry.content = u"Django入門"
entry.save() # データベースに保存
entry = Entry.objects.get(pk=1) # プライマリキー指定
entries = Entry.objects.all() # Entryすべて
# 条件指定
entries = Entry.objects.filter(title__startswith=u'Ruby')
正規表現を用いたURL設計
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
URL設計
---------------------------
.. sourcecode:: python
from blog.views import index, detail
urlpatterns = patterns('',
# '/'にマッチ
(r'^$', index),
# '/1234/'などにマッチ
(r'^(?P<object_id>\d+)/$', detail),
# '/admin/'にマッチ
(r'^admin/', include('django.contrib.admin.urls')),
)
強力なテンプレートエンジン
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
テンプレートエンジン
---------------------------
- テキストベースのテンプレート
- テンプレートの継承ができる
- ファイルの拡張子に指定はない
- テンプレートフィルタとタグ
テンプレートエンジン
---------------------------
.. sourcecode:: django
<html>
<head>
<title>{% block title %}ほげ{% endblock %}</title>
</head>
<body>
{% block main %}{% endblock %}
</body>
</html>
テンプレートエンジン
---------------------------
.. sourcecode:: django
{% extends "base.html" %}
{% block title %}ブログ{% endblock %}
{% block main %}
{% for entry in object_list %}
<h2>{{ entry.title }}</h2>
<p>{{ entry.content|urlize|linebreaksbr }}</p>
{% endfor %}
{% endblock %}
ビュー関数
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
ビュー関数
---------------------------
- HttpRequestオブジェクト
- HttpResponseオブジェクト
- テンプレートローダー
- コンテキスト
ビュー関数
---------------------------
.. sourcecode:: python
from django.template import Context, loader
from django.http import HttpResponse
from blog.models import Entry
def index(request):
object_list = Entry.objects.all()
t = loader.get_template('index.html')
c = Context({
'object_list': object_list,
})
return HttpResponse(t.render(c))
汎用ビュー
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
汎用ビュー
---------------------------
- ビュー関数をDRYに
- ``django.views.generic``
- urlsでも使える
汎用ビュー
---------------------------
.. sourcecode:: python
from django.views.generic.simple import direct_to_template
from blog.models import Entry
def index(request):
return direct_to_template(request,
extra_context={'object_list': Entry.objects.all()})
汎用ビュー
---------------------------
.. sourcecode:: python
from django.conf.urls.defaults import *
from blog.models import Entry
urlpatterns = patterns('django.views.generic.simple',
(r'^$', 'direct_to_template',
{'queryset': Entry.objects.all()}),
)
カッコいい管理画面
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
管理画面
---------------------------
.. s6.page({
backgroundImage: 'http://tkhp.tokibito.wsgiapp.com/static/img/presentation/page_django_admin.png',
styles: {
'h2[0]': { display: 'none' }
}
});
管理画面
---------------------------
.. s6.page({
backgroundImage: 'http://tkhp.tokibito.wsgiapp.com/static/img/presentation/page_django_admin2.png',
styles: {
'h2[0]': { display: 'none' }
}
});
フォーム生成とバリデーション
---------------------------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
フォームクラス
---------------------------
- フォームとモデルは別
- 2つのバリデーション
- フィールドでバリデーション
- ウィジェットでタグ生成
フォームクラス
---------------------------
.. sourcecode:: python
from django import newforms as forms
from blog.models import Tag
class EntryForm(forms.Form):
title = forms.CharField(max_length=30,
widget=forms.TextInput, label='Title')
content = forms.CharField(
widget=forms.Textarea, label='Content')
出力されるタグ
--------------------------
.. sourcecode:: python
>>> form = EntryForm()
>>> print form.as_p()
<p><label for="id_title">Title:</label> <input id="id_title"
type="text" name="title" maxlength="30" /></p>
<p><label for="id_content">Content:</label> <textarea id="id_content"
rows="10" cols="40" name="content"></textarea></p>
モデルからフォームを生成
---------------------------
ModelFormクラス(開発版)
.. sourcecode:: python
from django import newforms as forms
from blog.models import Entry
class EntryForm(forms.ModelForm):
class Meta:
model = Entry
fields = ('title', 'content',)
バリデーション
---------------------------
.. sourcecode:: python
form = EntryForm(request.POST)
if form.is_valid():
form.save()
開発用サーバ
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
開発用サーバ
---------------------------
- manage.py runserver
動作が高速
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
動作
---------------------------
- CGI動作でもそこそこ動くとか
- 遅延評価
国際化対応(i18n)
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
国際化
---------------------------
- settingsでロケールを変更
- gettextに対応
- テンプレートタグ
- localflavorアドオン
プロジェクトの構造
--------------------------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
プロジェクトの構造(一例)
------------------------------------------------
.. sourcecode:: text
- myproject
__init__.py .. Pythonのモジュールに必要
settings.py .. 設定ファイル
manage.py
urls.py
- blog .. Blogアプリケーション
__init__.py
models.py
views.py
- wiki .. Wikiアプリケーション
__init__.py
models.py
views.py
- static .. 静的ファイル
- img
- templates .. テンプレートディレクトリ
base.html
- blog
entry_list.html
entry_detail.html
- wiki
page_list.html
.. s6.page({
styles: {
'h2[0]': { display: 'none' },
'div[0]': { fontSize: '90%' }
}
});
初めてのDjango
---------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade',
styles: {
'h2[0]': { display: 'none' }
},
actions: [
[
['h2[0]', 'move', 0.4, [8, 45], [0, 45]],
['h2[0]', 'fade in', 0.4]
]
]
});
事前に必要なもの
---------------------------
- Python 2.3~2.5
- MacOSX10.5はPython2.5.1がインストール済
- Subversion(開発版を使う場合)
Djangoのバージョン
---------------------------
- 0.96.1
- 開発版(SVN版)
開発版はインストールで注意
国内のDjango事情
---------------------------------
- オンラインドキュメント和訳_
- djangoproject.jp_
- `django-ja (at Lingr)`_
- `django-ja (GoogleGroup)`_
.. _オンラインドキュメント和訳: http://ymasuda.jp/python/django/index.html#id3
.. _djangoproject.jp: http://www.djangoproject.jp/
.. _`django-ja (at Lingr)`: http://www.lingr.com/room/django-ja
.. _`django-ja (GoogleGroup)`: http://groups.google.com/group/django-ja/
Djangoの情報
---------------------------------
- 常山日記_
- UeblogWiki_
- `Django snippets`_
.. _常山日記: http://d.hatena.ne.jp/johzan/
.. _UeblogWiki: http://www.ueblog.org/mediawiki/index.php?title=Django
.. _`Django snippets`: http://www.djangosnippets.org/
時間があれば何か作る
---------------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
おまけ
---------------------------------
.. s6.page({
styleBase: 'takahashi',
separator: 'fade'
});
このプレゼンツールでもDjangoを使ってます!
---------------------------------------------------------------------------
.. s6.page({
styles: {
'h2[0]': { margin: '25% 0 0 0' }
}
});
おしまい
---------------------------------
ご清聴ありがとうございました
.. s6.page({
styleBase: 'takahashi',
separator: 'fade',
styles: {
'h2[0]': { display: 'none' },
'p[0]': { fontSize: '80%' }
}
});
|