├── .gitignore
├── .idea
├── inspectionProfiles
│ └── Project_Default.xml
├── misc.xml
├── modules.xml
├── scripter.iml
├── vcs.xml
└── watcherTasks.xml
├── Booru-Selector-Downloader
├── README.MD
├── bord.html
└── main.js
├── LICENSE
├── NeteaseCloudMusicPic
├── NeteaseCloudMusicPic.js
└── README.md
├── README.md
├── steam-picBed-log
├── README.MD
└── steam-picBed-log.js
├── xiamiAlbum
└── xiami.js
└── yande.re_db
├── gmDownloader.js
├── index.html
├── index.js
├── public.json
├── r.json
└── style.css
/.gitignore:
--------------------------------------------------------------------------------
1 | # Created by .ignore support plugin (hsz.mobi)
2 | ### Python template
3 | # Byte-compiled / optimized / DLL files
4 | __pycache__/
5 | *.py[cod]
6 | *$py.class
7 | venv/
8 |
9 | # C extensions
10 | *.so
11 |
12 | # vsc
13 | .vscode
14 |
15 | #idea
16 | .idea/dataSources.local.xml
17 | .idea/dataSources.xml
18 | .idea/dataSources/
19 | .idea/workspace.xml
20 |
21 | # node
22 | taobao_api_spider/node_modules/
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/Project_Default.xml:
--------------------------------------------------------------------------------
1 |