Skip to content

Instantly share code, notes, and snippets.

View seaavey's full-sized avatar
🎯
Focusing

Seaavey seaavey

🎯
Focusing
View GitHub Profile
@seaavey
seaavey / scapers-tiktok.js
Created October 26, 2024 08:08
Tiktok Scraper
/**
* @author: Muhammad Adriansyah ( Zayden)
* @description: Tiktok Scraper
* @license: MIT
*
*/
import axios from 'axios' // Import axios for making request
import FormData from 'form-data' // Import FormData for parsing form data
@seaavey
seaavey / scapers-spotify.js
Created October 28, 2024 09:11
Downloader Spotify
/**
* @author: Muhammad Adriansyah ( Zayden)
* @description: Downloader Spotify
* @license: MIT
*
*/
import axios from 'axios' // Import axios
const regexID =
@seaavey
seaavey / scapers-igdl.js
Created October 29, 2024 07:45
Downloader All Media Instagram
/**
* @author: Muhammad Adriansyah ( Zayden)
* @description: Downloader All Media Instagram
* @license: MIT
*
*/
import axios from 'axios' // Import axios
/**
@seaavey
seaavey / upscale
Last active December 19, 2024 06:29
Upscale Image Scale 2 & 4 Deafult is 4
const formData = require('form-data');
const axios = require('axios');
async function upscale(binary, scale = 4) {
try {
const form = new formData();
form.append('myfile', binary);
form.append('scaleRadio', scale);
const { data } = await axios.post(
@seaavey
seaavey / spotify_v2
Created December 26, 2024 16:35
downloader spotify
const axios = require('axios');
const cheerio = require('cheerio');
module.exports = async function (url) {
try {
const id = url.split('track/')[1].split('?')[0];
const res = await axios.get(`https://spowload.com/spotify/track-${id}`, {
withCredentials: true,
});
const info = await axios
@seaavey
seaavey / jkt48.js
Last active January 10, 2025 02:40
JKT48 Scaper
/**
* @author Muhammad Adriansyah
* @since 4 Januari 2025
* @license MIT
* @version 1.0.0
* @description JKT48 Scaper
*
* @module jkt48
* @category Scaper
* @see {@link https://jkt48.com/}