I want it FAST!!!1 (still need Prerequisites)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import http.client, urllib.request, urllib.parse, urllib.error, base64 | |
import json | |
import csv | |
names = ['YOUR LIST OF NAMES'] | |
companies = ['YOUR LIST OF COMPANIES FOR EACH NAME'] | |
YOUR_API_KEY = 'YOUR_API_KEY' | |
linkedin = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Data source: https://storage.googleapis.com/books/ngrams/books/datasetsv2.html | |
# extraction pattern: ngram TAB year TAB match_count TAB volume_count NEWLINE | |
# out: unique_ngram TAB sum(match_count) NEWLINE | |
import os, sys | |
from pathlib import Path | |
from concurrent.futures import ProcessPoolExecutor | |
from multiprocessing import freeze_support | |
import polars as pl |
OlderNewer