Add x-y vertex coordinates to empty numpy.ndarray

頂点座標を空のnumpy.ndarrayに追加する操作。
よくやるのでメモ。

—(sample code)—–

—(exec result)—–
[[-126 133]
[-126 131]
[-117 131]
[-117 134]]

—(memo)—-
initialize ndarray for x-y point list.
at first array is empty(no entry) and add_type is [x,y].
so initialize parameter is (0,2).

if append for ndarray, append element must ndarray.
we use only 1 axis, so axis = 0(axis memo)

phantomjs を使い、wordpress へ記事を投稿するスクリプト

Script sample to posting to wordpress by phantomjs.

pythonでmechanizeを使う

まずはmechanizeのインストール

ヤフーページにアクセスしてHTMLのソースを取得

perl で Mechanize を使い、wordpress へ記事を投稿するスクリプト

wordpressに対して自動で記事を投稿するスクリプト。perlからMechanizeを使いWEBアクセスをエミュレートして書き込むやり方。何度か実行する機会があったのでここにメモ。

Script sample to posting to wordpress by perl and mechanize.