add pickle scraper which can load serialized pickle files
This commit is contained in:
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)
|
Reference in New Issue
Block a user