Pythonで記述されたSpotifyの非同期APIラッパー「Spotify」のインストールについて解説しています。
「Spotify(https://github.com/mental32/spotify.py)」は、Spotifyクライアント用のAPIライブラリであり、Pythonで記述されたSpotify Web API(非同期APIライブラリ)です。
■Python
今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)
■spotifyをインストールする
spotifyをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install spotify
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、バージョンの切り替えを行います。
py -3.8 -m pip install spotify
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting spotify Downloading spotify-0.10.2-py3-none-any.whl (46 kB) ---------------------------------------- 46.4/46.4 kB 1.2 MB/s eta 0:00:00 Requirement already satisfied: aiohttp<4.0,>=3.6 in c:\users\user_\appdata\roaming\python\python38\site-packages (from spotify) (3.7.4.post0) Requirement already satisfied: backoff<2.0.0,>=1.10.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from spotify) (1.10.0) Requirement already satisfied: chardet<5.0,>=2.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from aiohttp<4.0,>=3.6->spotify) (3.0.4) Requirement already satisfied: typing-extensions>=3.6.5 in c:\users\user_\appdata\roaming\python\python38\site-packages (from aiohttp<4.0,>=3.6->spotify) (4.0.0) Requirement already satisfied: yarl<2.0,>=1.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from aiohttp<4.0,>=3.6->spotify) (1.6.3) Requirement already satisfied: attrs>=17.3.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from aiohttp<4.0,>=3.6->spotify) (21.4.0) Collecting async-timeout<4.0,>=3.0 Using cached async_timeout-3.0.1-py3-none-any.whl (8.2 kB) Requirement already satisfied: multidict<7.0,>=4.5 in c:\users\user_\appdata\roaming\python\python38\site-packages (from aiohttp<4.0,>=3.6->spotify) (5.1.0) Requirement already satisfied: idna>=2.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from yarl<2.0,>=1.0->aiohttp<4.0,>=3.6->spotify) (3.2) Installing collected packages: async-timeout, spotify Attempting uninstall: async-timeout Found existing installation: async-timeout 4.0.2 Uninstalling async-timeout-4.0.2: Successfully uninstalled async-timeout-4.0.2 Successfully installed async-timeout-3.0.1 spotify-0.10.2
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されれば、spotifyが正常にインストールされたことになります。
なお、今回はspotifyのバージョン0.10.2をインストールしました。
コメント