5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Python3 + Seleniumでインスタグラム自動いいね

Last updated at Posted at 2018-12-22

突貫でインスタグラム自動いいねBotを作りました、元気のあるうちに備忘録として残しときます。
もし動かす人がいたら自己責任でお願いします。

概要

  • ユーザ名、アカウント、いいねしたいハッシュタグをパラメータに与えることで
    インスタ内でハッシュタグを検索し、自動で50回いいねを行います。
  • 起動方法
    • python crawler.py [username] [password] [*keywords]

セットアップ

$ cat /etc/system-release
Amazon Linux release 2 (Karoo)

$ uname -r
4.14.77-81.59.amzn2.x86_64

$ sudo yum install git gcc zlib-devel bzip2 bzip2-devel readline readline-devel sqlite sqlite-devel openssl openssl-devel -y
$ git clone https://github.com/yyuu/pyenv.git ~/.pyenv
$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
$ echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
$ source ~/.bash_profile

$ pyenv -v
pyenv 1.2.8-5-gec9fb549

$ pyenv install 3.6.2
Downloading Python-3.6.2.tar.xz...
-> https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tar.xz
Installing Python-3.6.2...
Installed Python-3.6.2 to /home/ec2-user/.pyenv/versions/3.6.2

$ pyenv global 3.6.2
$ pyenv rehash

$ python --version
Python 3.6.2

$ curl https://intoli.com/install-google-chrome.sh | bash

$ echo "[CentOS-base]
name=CentOS-6 - Base
mirrorlist=http://mirrorlist.centos.org/?release=6&arch=x86_64&repo=os
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6

# released updates
[CentOS-updates]
name=CentOS-6 - Updates
mirrorlist=http://mirrorlist.centos.org/?release=6&arch=x86_64&repo=updates
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6

# additional packages that may be useful
[CentOS-extras]
name=CentOS-6 - Extras
mirrorlist=http://mirrorlist.centos.org/?release=6&arch=x86_64&repo=extras
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6" \
> /etc/yum.repos.d/centos.repo

$ rpm --import http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6 
$ yum -y install GConf2
$ curl -O https://chromedriver.storage.googleapis.com/2.37/chromedriver_liunx64.zip
$ unzip chromedriver_linux64.zip
$ mv chromedriver /usr/local/bin/

$ cd ~/Downloads   # どこか適当な場所で
$ wget https://noto-website-2.storage.googleapis.com/pkgs/Noto-hinted.zip
$ unzip Noto-hinted.zip
$ mkdir -p /usr/share/fonts/opentype/noto
$ cp *otf *ttf /usr/share/fonts/opentype/noto
$ fc-cache -f -v

$ pip install --upgrade pip
Collecting pip
  Downloading https://files.pythonhosted.org/packages/c2/d7/90f34cb0d83a6c5631cf71dfe64cc1054598c843a92b400e55675cc2ac37/pip-18.1-py2.py3-none-any.whl (1.3MB)
  
$ pip --version
pip 18.1 from /home/ec2-user/.pyenv/versions/3.6.2/lib/python3.6/site-packages/pip (python 3.6) 

$ pip install selenium
Collecting selenium
  Using cached https://files.pythonhosted.org/packages/80/d6/4294f0b4bce4de0abf13e17190289f9d0613b0a44e5dd6a7f5ca98459853/selenium-3.141.0-py2.py3-none-any.whl

$ pip freeze
selenium==3.141.0
urllib3==1.24.1

$ git clone https://github.com/watanabeJunna/crwler.git

$ cd clawler

$ python clawler.py
usage:   python crawler.py [username] [password] [*keywords]
example: python crawler.py user c8can1!!0_ python3
  • 懸念事項
    • インスタのいいね規制がすごい
    • 場合によってはアカウント凍結されるとか
    • DOMの属性値がほとんど可変
    • 今後仕様は変更されることによってExceptionが発生しかねない
    • 例外処理がなんとかしよう
5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?