add pickle scraper which can load serialized pickle files
This commit is contained in:
parent
dda2f183e3
commit
aae663d518
5
tge/scrapers/pickle.py
Normal file
5
tge/scrapers/pickle.py
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import pickle
|
||||||
|
|
||||||
|
def scrape (source):
|
||||||
|
with open(source, "rb") as in_file:
|
||||||
|
return pickle.load(in_file)
|
Loading…
x
Reference in New Issue
Block a user