This code is adapted from Img_link_to_local_markdown
This is a python script that scans all the markdown files of a folder looking for images links, and substitutes the urls of the markdown files for local file names, and download the images.
Offline markdown files are a reliable way to store and organize information. When copying from the web the text is copied directly, but images are copied as links. If the link expires in the future, or you are offline, you lose the information. It would be great to have every picture added as a link downloaded to local storage.
-
Support both
<img>and![]()labels. -
Add more options to custom the behaviors(e.g. whether to modify source markdown files).
-
Download images in Async mode, which performs well to decrease exec time:
vanilla code async code 28.420s 5.236s -
Support loop traversal of markdown files.
-
Save the link between the images and the urls, which enables user and this program to re-download failed images.
-
Convert all absolute paths to relative paths.
-
Support for custom addition of test cases to verify if markdown files can be correctly converted.
-
User-friendly approach.
- Install Python on your computer.
- Clone this Repo
git clone https://github.com/YellowAndGreen/Md-ImgLocalize.git. - Install aiohttp
pip install -r requirements.txt. - Change to the Repo's directory.
- You can simply Run
python localize.pyin command line to use the download function. - If you need to custom this program, run
python localize.py --md_path=[md_path]in command line:- specify
--md_pathas your markdown files directory - use
--logto save the complete log file, NOTE: using --log leads to no output on the screen - use
--modify_sourceto modify source markdown files directly, this option create image folders under markdown file directory - use
--coroutine_numto specify the number of coroutines, set to 1 if async feature is not needed. - use
--del_dictto delete savedall_img_dict.jsonfile. - use
--relativeto convert all absolute paths to relative paths, this option will not download images.
- specify
- To use the Test feature, you need to run
python localize.py --test. All test cases are saved in thetest_casefolder. To add a single image test case, please directly modify thetest_single/test_single.mdfile. To add an entire test folder, please add it to thetest_folder.
- Async function
- Loop traverse
- Re-download
- Delete the auto-generated dict file
- Convert absolute path to relative path
- Test cases
- Add github actions
- Add web support