Trends_Proは、Instagramのハッシュタグ検索を自動化し、結果を可視化するPythonアプリケーションです。ユーザーが指定したハッシュタグの投稿数を取得し、結果をCSVファイルとして保存します。また、結果を棒グラフとして可視化し、画像として保存します。入力した単語はGoogle Trends分析にてシームレスに分析することが可能です。
まず最初に、このプロジェクトを実行するためにはPythonが必要です。Pythonは公式ウェブサイトからダウンロード可能です。このプロジェクトはPython 3.7以上で動作します。
ファイルを解凍後はコマンドプロンプト(Windows)やターミナル(Mac)を開きcd
コマンドで解凍したファイルのパスに移動します。
cd /*解凍したファイルのパス*/
次にPythonのパッケージマネージャであるpipを使用して、必要なPythonライブラリをインストールする必要があります。以下のコマンドを使用してライブラリをインストールできます。以下の動作が必要なのは初回時のみで2回目に実行するときは必要ありません。
Firstly, you will need Python to run this project. You can download Python from the official website. This project works with Python 3.7 and above.
Next, you'll need to install the necessary Python libraries using pip, which is Python's package manager. You can install the libraries using the following command:
pip install selenium webdriver_manager pandas matplotlib openpyxl pillow
必要なソフトウェアとライブラリがインストールされていることを確認したら、以下のステップでプロジェクトをセットアップします:
- このリポジトリをクローンまたはダウンロードします。
- ターミナルを開き、リポジトリのディレクトリに移動します。
python app.py
を実行して、スクリプトを起動します。初回は起動に時間がかかります。
You can run the program from the command line as follows:
python app.py
app.py
を実行します。これにより、アプリケーションのGUIが開きます。初回は起動に時間がかかります。- GUIを使用して、検索したいハッシュタグを入力します。
- 「検索」ボタンをクリックします。アプリケーションはInstagramのハッシュタグ検索を自動的に実行し、結果をCSVファイルとして保存します。
- 「結果を表示」ボタンをクリックすると、結果の棒グラフが表示されます。
このプロジェクトはMITライセンスの下でライセンスされています。
質問やフィードバックがある場合は、GitHubの「Issues」タブを使用してください。
Trends_Pro is a Python application that automates Instagram hashtag searches and visualizes the results. It fetches the number of posts for user-specified hashtags and saves the results as a CSV file. It also visualizes the results as a bar chart and saves it as an image.The entered words can be seamlessly analyzed by Google Trends analysis.
- Clone or download this repository.
- Install the necessary Python packages. These include
tkinter
,selenium
,pandas
,matplotlib
, and others. - Download ChromeDriver and add it to your system path.
- Run
app.py
. This will open the application's GUI. - Use the GUI to enter the hashtags you want to search for.
- Click the 'Search' button. The application will automatically perform Instagram hashtag searches and save the results as a CSV file.
- Click the 'Show Results' button to display a bar chart of the results.
This project is licensed under the MIT License.
If you have any questions or feedback, please use the 'Issues' tab on GitHub.