<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/reverse_python/">
    <title>reverse_python @ ウィキ</title>
    <link>http://w.atwiki.jp/reverse_python/</link>
    <atom:link href="https://w.atwiki.jp/reverse_python/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>reverse_python @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2012-04-04T21:30:54+09:00</dc:date>
    <utime>1333542654</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/reverse_python/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/reverse_python/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/reverse_python/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/reverse_python/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/reverse_python/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/reverse_python/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/reverse_python/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/reverse_python/pages/7.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/reverse_python/pages/6.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/reverse_python/pages/5.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/reverse_python/pages/15.html">
    <title>文字列</title>
    <link>https://w.atwiki.jp/reverse_python/pages/15.html</link>
    <description>
      **ヒアドキュメント
&quot;&quot;&quot;で文字列を囲みます。文末に\を記述すると、直後の改行は無視されます。
 # ヒアドキュメントで代入
 text = &quot;&quot;&quot;\
 This is
 a example \
 of here document.&quot;&quot;&quot;
 print text # This is\na example of here document.

**先頭と末尾の空白文字の削除
strip() を使います。
 # 先頭にタブと空白、末尾に改行がある文字列の例
 text = &quot;\t strip\n&quot;
 # 先頭と末尾の空白文字の削除
 print text.strip() #=&gt; strip    </description>
    <dc:date>2012-04-04T21:30:54+09:00</dc:date>
    <utime>1333542654</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/reverse_python/pages/14.html">
    <title>日時</title>
    <link>https://w.atwiki.jp/reverse_python/pages/14.html</link>
    <description>
      *日時
**実行時の日時を取得する
 import datetime
 
 # 実行時の日時を表すdatetimeインスタンスを返す
 now = datetime.datetime.now()
 
 # 年-月-日 時:分:秒.マイクロ秒 
 print now #=&gt; 2012-04-04 19:21:45.828625
 
 # 年 
 print now.year #=&gt; 2012
 
 # 月
 print now.month #=&gt; 4
 
 # 日
 print now.day #=&gt;  4
 
 # 時
 print now.hour #=&gt; 19
 
 # 分
 print now.minute #=&gt; 21
 
 # 秒
 print now.second #=&gt; 45
 
 # マイクロ秒
 print now.microsecond #=&gt; 828625

**ある月の日数を取得する

 import calendar
 # 2012年4月に関するタプルを返す
 (wday_1st, days) = calendar.monthrange(2012,4)
 
 # 指定した年月の1日の曜日
 print wday_1st #=&gt; 6
 
 # 指定した年月の日数
 print days #=&gt; 30    </description>
    <dc:date>2012-04-04T19:34:33+09:00</dc:date>
    <utime>1333535673</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/reverse_python/pages/13.html">
    <title>プラグイン/人気商品一覧</title>
    <link>https://w.atwiki.jp/reverse_python/pages/13.html</link>
    <description>
      * 人気商品一覧
@wikiのwikiモードでは
 #price_list(カテゴリ名)
と入力することで、あるカテゴリの売れ筋商品のリストを表示することができます。

カテゴリには以下のキーワードがご利用できます。
|キーワード|表示される内容|
|ps3|PlayStation3|
|ps2|PlayStation3|
|psp|PSP|
|wii|Wii|
|xbox|XBOX|
|nds|Nintendo DS|
|desctop-pc|デスクトップパソコン|
|note-pc|ノートパソコン|
|mp3player|デジタルオーディオプレイヤー|
|kaden|家電|
|aircon|エアコン|
|camera|カメラ|
|game-toy|ゲーム・おもちゃ全般|
|all|指定無し|

空白の場合はランダムな商品が表示されます。

※このプラグインは[[価格比較サイト@PRICE&gt;&gt;http://atprice.jp]]のデータを利用しています。

-----

たとえば、
 #price_list(game-toy)
と入力すると以下のように表示されます。

ゲーム・おもちゃ全般の売れ筋商品
#price_list(game-toy)

ノートパソコンの売れ筋商品
#price_list(game-toy)

人気商品リスト
#price_list()
    </description>
    <dc:date>2012-04-04T17:09:31+09:00</dc:date>
    <utime>1333526971</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/reverse_python/pages/12.html">
    <title>プラグイン/コメント</title>
    <link>https://w.atwiki.jp/reverse_python/pages/12.html</link>
    <description>
      * コメントプラグイン
@wikiのwikiモードでは
 #comment()
と入力することでコメントフォームを簡単に作成することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_60_ja.html


-----
たとえば、#comment() と入力すると以下のように表示されます。

#comment    </description>
    <dc:date>2012-04-04T17:09:31+09:00</dc:date>
    <utime>1333526971</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/reverse_python/pages/11.html">
    <title>プラグイン/関連ブログ</title>
    <link>https://w.atwiki.jp/reverse_python/pages/11.html</link>
    <description>
      * 関連ブログ
@wikiのwikiモードでは
 #bf(興味のある単語)
と入力することで、あるキーワードに関連するブログ一覧を表示することができます

詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_161_ja.html

-----


たとえば、#bf(ゲーム)と入力すると以下のように表示されます。


#bf(ゲーム)
    </description>
    <dc:date>2012-04-04T17:09:31+09:00</dc:date>
    <utime>1333526971</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/reverse_python/pages/10.html">
    <title>プラグイン</title>
    <link>https://w.atwiki.jp/reverse_python/pages/10.html</link>
    <description>
      @wikiにはいくつかの便利なプラグインがあります。

-----


#ls

-----

これ以外のプラグインについては@wikiガイドをご覧ください
=&gt;http://atwiki.jp/guide/
    </description>
    <dc:date>2012-04-04T17:09:31+09:00</dc:date>
    <utime>1333526971</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/reverse_python/pages/9.html">
    <title>プラグイン/動画(Youtube)</title>
    <link>https://w.atwiki.jp/reverse_python/pages/9.html</link>
    <description>
      * 動画(youtube)
@wikiのwikiモードでは
 #video(動画のURL)
と入力することで、動画を貼り付けることが出来ます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_209_ja.html

また動画のURLはYoutubeのURLをご利用ください。
＝＞http://www.youtube.com/

-----


たとえば、#video(http://youtube.com/watch?v=kTV1CcS53JQ)と入力すると以下のように表示されます。


#video(http://youtube.com/watch?v=kTV1CcS53JQ)

    </description>
    <dc:date>2012-04-04T17:09:31+09:00</dc:date>
    <utime>1333526971</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/reverse_python/pages/7.html">
    <title>プラグイン/アーカイブ</title>
    <link>https://w.atwiki.jp/reverse_python/pages/7.html</link>
    <description>
      * アーカイブ
@wikiのwikiモードでは
 #archive_log()
と入力することで、特定のウェブページを保存しておくことができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/25_171_ja.html


-----


たとえば、#archive_log()と入力すると以下のように表示されます。
保存したいURLとサイト名を入力して&quot;アーカイブログ&quot;をクリックしてみよう


#archive_log()
    </description>
    <dc:date>2012-04-04T17:09:31+09:00</dc:date>
    <utime>1333526971</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/reverse_python/pages/6.html">
    <title>プラグイン/編集履歴</title>
    <link>https://w.atwiki.jp/reverse_python/pages/6.html</link>
    <description>
      * 更新履歴
@wikiのwikiモードでは
 #recent(数字)
と入力することで、wikiのページ更新履歴を表示することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_117_ja.html


-----


たとえば、#recent(20)と入力すると以下のように表示されます。


#recent(20)
    </description>
    <dc:date>2012-04-04T17:09:31+09:00</dc:date>
    <utime>1333526971</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/reverse_python/pages/5.html">
    <title>まとめサイト作成支援ツール</title>
    <link>https://w.atwiki.jp/reverse_python/pages/5.html</link>
    <description>
      * まとめサイト作成支援ツールについて
@wikiには[[まとめサイト作成を支援するツール&gt;&gt;http://atwiki.jp/matome/]]があります。
また、
 #matome_list
と入力することで、注目の掲示板が一覧表示されます。

利用例）#matome_listと入力すると下記のように表示されます
#matome_list
    </description>
    <dc:date>2012-04-04T17:09:31+09:00</dc:date>
    <utime>1333526971</utime>
  </item>
  </rdf:RDF>
