diff options
Diffstat (limited to 'src/portal/tests')
| -rw-r--r-- | src/portal/tests/test.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/portal/tests/test.py b/src/portal/tests/test.py index cdf7178..a5139f6 100644 --- a/src/portal/tests/test.py +++ b/src/portal/tests/test.py @@ -3,7 +3,7 @@ import httpx import sys sys.path.append('../py') from base import Method -from post import DateType, PostEncoder +from post import DateType, PostEncoder, Media from modules import ALL_MODULES #ALL_MODULES['instagram'][0].init() @@ -12,6 +12,10 @@ from modules import ALL_MODULES #print(page) #print(json.dumps(page, indent=4, cls=PostEncoder)) +d = Media() +print(d) +sys.exit(1) + #module = ALL_MODULES['fanbox'][0] #module = ALL_MODULES['pixiv_web'][0] module = ALL_MODULES['instagram'][0] |