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
const PixivApi = require('pixiv-api-client'); | |
const pixiv = new PixivApi(); | |
//insert there your export from pixivutil2 (option e) in an array: [id1, id2, id3] | |
const bms = [11] | |
var http = require('http'); | |
var server = http.createServer(function(req, res) { | |
res.writeHead(200); |
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
# -*- coding: utf-8 -*- | |
import os, sys | |
from stat import ST_MTIME | |
import distutils | |
from distutils import dir_util | |
import shutil | |
import logging | |
from datetime import datetime |