This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Description: Simple python script to download portuguese One Piece manga chapters from onepieceex.net | |
| # Usage: Just execute the script with python and tell the chapter number as the first and only parameter. | |
| # The chapter will then be downloaded and saved as .cbz on the same folder as the script. | |
| # Author: Márcio Medeiros | |
| # Version 1.0 | |
| import sys | |
| import os | |
| import shutil | |
| import requests | |
| import re |