elliotgao2 / gain

Web crawling framework based on asyncio.
GNU General Public License v3.0
2.03k stars 207 forks source link

Does it work on OSX? #43

Open littlepea opened 6 years ago

littlepea commented 6 years ago

The readme says:

pip install uvloop (Only linux)

Does it mean that gain can't be used on a Mac?

wagaman commented 6 years ago

try: import uvloop

asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())

except ImportError: pass