InstaPy / instapy-quickstart

💨 Simply get InstaPy up and running in minutes.
GNU General Public License v3.0
765 stars 796 forks source link

cannot import name 'UNICODE_EMOJI' from 'emoji.unicode_codes' #272

Open MichaelCho-haman opened 2 years ago

MichaelCho-haman commented 2 years ago

ImportError: cannot import name 'UNICODE_EMOJI' from 'emoji.unicode_codes'

How can I fix this problem?

What I have done 1) Search every single webpages in google 2) pip uninstall emoji / pip install emoji == 1.7 & 2.0

Environment : window, VS CODE

Please help me, I am crying

""" Quickstart script for InstaPy usage """

imports

from instapy import InstaPy from instapy import smart_run

login credentials

insta_username = '' # <- enter username here insta_password = '' # <- enter password here

get an InstaPy session!

set headless_browser=True to run InstaPy in the background

session = InstaPy(username=insta_username, password=insta_password, headless_browser=False)

with smart_run(session): """ Activity flow """

general settings

session.set_relationship_bounds(enabled=True,
                                delimit_by_numbers=True,
                                max_followers=4590,
                                min_followers=45,
                                min_following=77)

session.set_dont_include(["friend1", "friend2", "friend3"])
session.set_dont_like(["pizza", "#store"])

# activity
session.like_by_tags(["natgeo"], amount=10)
BrunoSantos-Git commented 1 year ago

Hey Michael, Don't know if you fixed it, but these two commands saved me: pip uninstall emoji pip install emoji==1.7

DAITYA69 commented 1 year ago

ImportError: cannot import name 'UNICODE_EMOJI' from 'emoji.unicode_codes'

How can I fix this problem?

What I have done 1) Search every single webpages in google 2) pip uninstall emoji / pip install emoji == 1.7 & 2.0

Environment : window, VS CODE

Please help me, I am crying

""" Quickstart script for InstaPy usage """

imports

from instapy import InstaPy from instapy import smart_run

login credentials

insta_username = '' # <- enter username here insta_password = '' # <- enter password here

get an InstaPy session!

set headless_browser=True to run InstaPy in the background

session = InstaPy(username=insta_username, password=insta_password, headless_browser=False)

with smart_run(session): """ Activity flow """

general settings

session.set_relationship_bounds(enabled=True,
                                delimit_by_numbers=True,
                                max_followers=4590,
                                min_followers=45,
                                min_following=77)

session.set_dont_include(["friend1", "friend2", "friend3"])
session.set_dont_like(["pizza", "#store"])

# activity
session.like_by_tags(["natgeo"], amount=10)

Did you fix it?