Skip to content

Instantly share code, notes, and snippets.

@sarubee
sarubee / bc_api.py
Last active May 12, 2019 07:47
バフェット・コード web API からデータを取得するためのクラスを記述
# -*- coding: utf-8 -*-
#
# bc_api.py
#
# Copyright (c) 2019 Sarubee
# Released under the MIT License.
# https://opensource.org/licenses/MIT
#
@sarubee
sarubee / test_bc_api.ipynb
Created May 10, 2019 09:44
bc_api.py を使用してバフェット・コードからデータ取得する例(Jupyter Notebook)。
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sarubee
sarubee / get_bc.py
Last active November 4, 2019 08:13
バフェット・コード web API からデータを取得するための実行スクリプト
#!/usr/bin/env python3.6
# -*- coding: utf-8 -*-
#
# get_bc.py
#
# Copyright (c) 2019 Sarubee
# Released under the MIT License.
# https://opensource.org/licenses/MIT
#
@sarubee
sarubee / test_bc_pickle.ipynb
Created May 18, 2019 04:00
バフェット・コード web API データの pickle 化テスト
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sarubee
sarubee / bc_convert.py
Created May 18, 2019 07:09
get_bc.py で取得した CSV データを活用しやすいよう変換するスクリプト
#!/usr/bin/env python3.6
# -*- coding: utf-8 -*-
#
# bc_convert.py
#
# Copyright (c) 2019 Sarubee
# Released under the MIT License.
# https://opensource.org/licenses/MIT
#
@sarubee
sarubee / bc_screening.py
Last active May 31, 2019 15:57
バフェット・コード web API データをスクリーニングするためのクラスを記述
#!/usr/bin/env python3.6
# -*- coding: utf-8 -*-
#
# bc_screening.py
#
# Copyright (c) 2019 Sarubee
# Released under the MIT License.
# https://opensource.org/licenses/MIT
#
@sarubee
sarubee / test_bc_screening.ipynb
Last active May 31, 2019 15:57
バフェット・コード web API データのスクリーニングのテスト
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.