|
2 | 2 |
|
3 | 3 | `safarireadinglist` is a Python package to load your Safari reading list into Python, and to export it, including thumbnail icons. |
4 | 4 |
|
5 | | -<img src="readme_imgs/reading_list.jpg" alt="drawing" width="400"/> |
| 5 | +<img src="https://github.com/smrfeld/export-safari-reading-list/blob/main/readme_imgs/reading_list.jpg?raw=true" alt="drawing" width="400"/> |
6 | 6 |
|
7 | 7 | ## Sample results |
8 | 8 |
|
9 | | -<img src="readme_imgs/json.png" alt="drawing" width="700"/> |
| 9 | +<img src="https://github.com/smrfeld/export-safari-reading-list/blob/main/readme_imgs/json.png?raw=true" alt="drawing" width="700"/> |
10 | 10 |
|
11 | | -<img src="readme_imgs/csv.png" alt="drawing" width="700"/> |
| 11 | +<img src="https://github.com/smrfeld/export-safari-reading-list/blob/main/readme_imgs/csv.png?raw=true" alt="drawing" width="700"/> |
12 | 12 |
|
13 | 13 | ## Installation |
14 | 14 |
|
15 | | -Install the `safarireadinglist` package in the root directory. |
| 15 | +Install the `safarireadinglist` package from PyPI: |
| 16 | + |
| 17 | +```bash |
| 18 | +pip install safarireadinglist |
| 19 | +``` |
| 20 | + |
| 21 | +Note: before using, you need to give the terminal full disk access in the system preferences. Go to `Settings/Security & Privacy/Full Disk Access`. Navigate to `/Applications/Utilities/` folder and choose the `Terminal` app. If you are launching the command from VS Code you will need to add this as well. |
| 22 | + |
| 23 | +*Alternative local installation:* |
16 | 24 |
|
17 | 25 | ```bash |
18 | 26 | pip install -e . |
19 | 27 | ``` |
20 | 28 |
|
21 | 29 | Note: `setuptools` is the only requirement. For dev purposes, you may want to install the exact versions in `pip install -r requirements.txt`. |
22 | 30 |
|
23 | | -Final note: You need to give the terminal full disk access in the system preferences. See common errors below for instructions. |
24 | | - |
25 | 31 | ## Usage |
26 | 32 |
|
27 | 33 | In the command line, execute: |
@@ -59,7 +65,7 @@ python website.py reading_list.json reading_list_icons |
59 | 65 | ``` |
60 | 66 | The output is in the `website_out` folder. |
61 | 67 |
|
62 | | -<img src="readme_imgs/website.png" alt="drawing" width="800"/> |
| 68 | +<img src="https://github.com/smrfeld/export-safari-reading-list/blob/main/readme_imgs/website.png?raw=true" alt="drawing" width="800"/> |
63 | 69 |
|
64 | 70 | ## Known errors & solutions |
65 | 71 |
|
|
0 commit comments