PythonのシンプルなGoogleスプレッドシートAPI・ライブラリ「gspread」をインストールする

スポンサーリンク

PythonのシンプルなGoogle Spreadsheets(グーグルスプレッドシート)API・ライブラリ「gspread」のインストールについて解説しています。

gspread(https://github.com/burnash/gspread)は、とてもシンプルなGoogle Spreadsheets Python APIです。タイトル、キー、URLでスプレッドシートを開くことができ、セル範囲の読み取り、書き込み、フォーマットが行えます。

■Python

今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)

■gspreadをインストールする

gspreadをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。

pip install gspread

起動後、上記のコマンドを入力し、Enterキーを押します。

なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、pipを使う場合にはコマンドでの切り替えを行います。

py -3.8 -m pip install gspread

切り替えるために、上記のコマンドを入力し、Enterキーを押します。

Defaulting to user installation because normal site-packages is not writeable
Collecting gspread
Downloading gspread-4.0.1-py3-none-any.whl (29 kB)
Requirement already satisfied: google-auth-oauthlib>=0.4.1 in c:\users\user_\appdata\roaming\python\python38\site-packages (from gspread) (0.4.5)
Requirement already satisfied: google-auth>=1.12.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from gspread) (1.32.1)
Requirement already satisfied: requests-oauthlib>=0.7.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from google-auth-oauthlib>=0.4.1->gspread) (1.3.0)
Requirement already satisfied: pyasn1-modules>=0.2.1 in c:\users\user_\appdata\roaming\python\python38\site-packages (from google-auth>=1.12.0->gspread) (0.2.8)
Requirement already satisfied: six>=1.9.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from google-auth>=1.12.0->gspread) (1.15.0)
Requirement already satisfied: cachetools<5.0,>=2.0.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from google-auth>=1.12.0->gspread) (4.2.2)
Requirement already satisfied: setuptools>=40.3.0 in c:\program files\python38\lib\site-packages (from google-auth>=1.12.0->gspread) (47.1.0)
Requirement already satisfied: rsa<5,>=3.1.4; python_version >= “3.6” in c:\users\user_\appdata\roaming\python\python38\site-packages (from google-auth>=1.12.0->gspread) (4.7.2)
Requirement already satisfied: oauthlib>=3.0.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib>=0.4.1->gspread) (3.1.1)
Requirement already satisfied: requests>=2.0.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib>=0.4.1->gspread) (2.25.1)
Requirement already satisfied: pyasn1<0.5.0,>=0.4.6 in c:\users\user_\appdata\roaming\python\python38\site-packages (from pyasn1-modules>=0.2.1->google-auth>=1.12.0->gspread) (0.4.8)
Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests>=2.0.0->requests-oauthlib>=0.7.0->google-auth-oauthlib>=0.4.1->gspread) (1.26.5)
Requirement already satisfied: certifi>=2017.4.17 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests>=2.0.0->requests-oauthlib>=0.7.0->google-auth-oauthlib>=0.4.1->gspread) (2021.5.30)
Requirement already satisfied: idna<3,>=2.5 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests>=2.0.0->requests-oauthlib>=0.7.0->google-auth-oauthlib>=0.4.1->gspread) (2.10)
Requirement already satisfied: chardet<5,>=3.0.2 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests>=2.0.0->requests-oauthlib>=0.7.0->google-auth-oauthlib>=0.4.1->gspread) (4.0.0)
Installing collected packages: gspread
Successfully installed gspread-4.0.1

Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、gspreadが正常にインストールされたことになります。

なお、今回はgspreadのバージョン4.0.1をインストールしました。

コメント

タイトルとURLをコピーしました