Skip to content

Instantly share code, notes, and snippets.

View nikalras's full-sized avatar

Nikon Rasumov nikalras

View GitHub Profile
@slothyrulez
slothyrulez / concurrent_scrapping_pyppeteer.py
Created April 6, 2018 10:58
Concurrently Wikipedia scrapping with pyppeteer
# -*- coding: utf-8 -*-
import pprint
import asyncio
from pyppeteer import launch
async def get_browser():
return await launch({"headless": False})