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
class InterimDetail: | |
df = None | |
filter = None | |
sorts = None | |
subgraph = None | |
pipeline = None | |
process = None | |
port = None | |
is_last_node = None | |
cached_df = None |
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
from prophecy.libs import typed_lit | |
from pyspark.sql import * | |
from pyspark.sql.types import * | |
from pyspark.sql.functions import * | |
from prophecy.lookups import ( | |
createLookup, | |
createRangeLookup, | |
lookup, | |
lookup_last, |
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 re | |
from urllib.parse import quote | |
import requests | |
from tqdm import tqdm | |
def main(): | |
with open('crossref.json', 'w') as _out: | |
bar = tqdm() | |
cursor = '*' |