masterscraper/masterscraper/core/show.py

10 lines
147 B
Python

#!/usr/bin/env python3
#--------[ Show Scrape Data ]--------#
def show(self):
print(self.meta)
for row in self.data:
print(row)