Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian 373c0a9e25 1.244.100 2025-12-30 23:36:10 +01:00
DebaucheryLibrarian 3902f32b23 Added browser throttle config, removed request limits from default config. 2025-12-30 23:36:08 +01:00
4 changed files with 8 additions and 40 deletions

View File

@ -333,47 +333,14 @@ module.exports = {
interval: 50,
concurrency: 20,
},
browser: {
interval: 20,
concurrency: 5,
},
media: {
interval: 50,
concurrency: 20,
},
'www.kink.com': {
interval: 1000,
concurrency: 1,
},
// Aylo
'www.brazzers.com': {
interval: 2000,
concurrency: 1,
},
'www.realitykings.com': {
interval: 2000,
concurrency: 1,
},
'www.mofos.com': {
interval: 2000,
concurrency: 1,
},
'www.analvids.com': { // seems to error at default rate
interval: 500,
concurrency: 1,
},
'images.mylfcdn.net': {
interval: 50,
concurrency: 1,
},
'westcoastproductions.com': {
interval: 100,
concurrency: 1,
},
'www.8kmilfs.com': {
interval: 1200, // 3 requests/second and 60 requests/minute rate limit
concurrency: 1,
},
'www.pornfidelity.com': {
interval: 1200,
concurrency: 1,
},
},
apiKeys: {
kellyCash: null,

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.244.99",
"version": "1.244.100",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.244.99",
"version": "1.244.100",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.244.99",
"version": "1.244.100",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@ -45,6 +45,7 @@ unprint.options({
interval: argv.interval || config.limits.default.interval,
concurrency: argv.concurrency || config.limits.default.concurrency,
},
browser: config.limits.browser,
},
proxy: config.proxy,
});