Category: python

【python】Windows + pynfc

相当しんどいWindowのpynfc   http://nfcpy.readthedocs.io/en/latest/topics/get-started.html python 2系をインストール。pynfcは2系。 システム環境変数Pathにc:\Python27を追加。   pip実行してlibusb,pyserial取得 C:\Python27\Scripts\pip.exe install libusb1 pyserial   ・WinUSBドライバと、libusb-1.0.dllをSystem32へコピー Zadigをinstall   Zadigを起動して、menu>Option> List All Devicesをチェック

Continue reading【python】Windows + pynfc

REST test script

from bottle import route, run, template,get,post,put,delete,request,response import json import os def secure_response_headers(response): response.set_header(‘Content-Type’, ‘application/json’) response.set_header(‘X-XSS-Protection’, ‘1; mode=block’) response.set_header(‘X-Frame-Options’, ‘deny’) response.set_header(‘Content-Security-Policy’,

Continue readingREST test script