diff options
author | David Luevano <55825613+luevano@users.noreply.github.com> | 2019-10-11 20:45:44 -0600 |
---|---|---|
committer | David Luevano <55825613+luevano@users.noreply.github.com> | 2019-10-11 20:45:44 -0600 |
commit | 9a9ee70ffcfa1b695cea18a019f7d510c14e6b12 (patch) | |
tree | ebc2cd9aa2237135c6954cefe1bacae04556dde6 /tests | |
parent | 17bef995a65d18fddb19dba11243853cf6ae2233 (diff) |
Restructure files.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/basic_tests.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/basic_tests.py b/tests/basic_tests.py new file mode 100644 index 0000000..d7bf557 --- /dev/null +++ b/tests/basic_tests.py @@ -0,0 +1,32 @@ +# create_database() +# update_database() +# download_manga() + +# print(os.listdir()) + +# chapter_csv_to_df(chapter_csv='kimetsu_no_yaiba.csv') +# download_manga() + +# chapter_list = get_chapters_list() +# for chapter in chapter_list: +# print(chapter) + +# chapters_list_to_csv(chapters_list=chapter_list) + +# os.chdir('data/kimetsu_no_yaiba') +# for image in chapter_image_csv_to_list('chapter_1_cruelty.csv'): +# print(image) + +# chapters_list = chapters_csv_to_list(chapter_csv='kimetsu_no_yaiba.csv') + +# chapter_image_list_to_csv(chapters_list[0]) + + +# first_chapter_img_url_list = get_chapter_image_list(chapter_list[0]) + +# download_image(first_chapter_img_url_list[0]) + + +# os.chdir(MANGA_DIR) + +# download_chapter(first_chapter_img_url_list) |