Python swig で foofunction is private と怒られた時。 /usr/include/c++/5/bits/ios_base.h:855:5: error: ‘std::ios_base::ios_base(const std::ios_base&)’ is private ios... 2018-12-20 Python
Python DictCursor に AttrDict を指定する import pymysql from dictmysql import DictMySQL from attrdict import AttrDict pymysql.cursors.DictCursor.dict_type = Att... 2018-12-03 Python作業メモ
Python Python requests に DefaultTimeout を設定する Pythonコード import requests import pytest from requests.adapters import TimeoutSauce for default_timeout in : def __... 2018-11-30 Python作業メモ
Python Python Mock で オリジナルのインスタンメソッドのを呼びたい時 import os import requests from urllib3.poolmanager import PoolManager from requests.adapters import HTTPAdapter from ur... 2018-11-19 Python作業メモ
Python Python 2, Python 3 で string を bytes に変換する。 # Python 2 and 3: from builtins import bytes, chr data = 'mytext' data = bytes(data, 'ascii') 共通の処理系にしておきたかったので、メモ書き。... 2018-11-09 Python作業メモ
Python ctypes で c_char array を c_char_p に変換する data = bytearray.fromhex('28d03bc3ee0243fa7d25a56dc042311d') p1 = (ctypes.c_char * len(data)) p1 = p1.from_b... 2018-11-08 Python作業メモ
Python Windowsユーザ御用達の uci.edu から直接python wheelをインストールしてくれるライブラリ pipwin あんまり情報が出てこないのでメモ書き。 バグ直したった。 PR通してくれたので、pipでインストールしてももう大丈夫。 2018-08-06 Python作業メモ
Python Python2 から Python3 へのC Extension の移行 最初に追加 struct module_state { PyObject *error; }; #if PY_MAJOR_VERSION >= 3 #define GETSTATE(m) ((struct module_st... 2018-08-01 Python作業メモ
Python Interactive Brokers 証券の Python API を利用する Interactive Brokers 証券とは 日本には珍しく自動売買プラットフォームが提供されいてる証券会社です。基本的には全部JAVAで書かれていますが、最近Pythonも公式に対応しました。 Python ライブラリの入手 ... 2018-07-31 Python
Python Python Pandas からお手軽に highcharts が使える kanichart 作りました。 Kanichart python-highcharts のラッパー pandas の DataFrame や Series からお手軽に使える Jupyterからローソク足チャートを使いたいと思った時、色々試しましたが一番良... 2018-07-02 Python