0.0.14 • Published 25 days ago

cfbypass v0.0.14

Weekly downloads
-
License
ISC
Repository
github
Last release
25 days ago

NOTICE

This package is deprecated and not developed anymore. This is meant only for bare-minimum tests and bypassing CloudFlare.

CFBypass

Python based CloudFlare bypass. Utilizes VeNoMouS's CloudScraper project to bypass CloudFlare. All credit goes to him.

Installation

THIS NEEDS TO BE UPDATED Prerequisites: Python (version 3.10 or higher) and NodeJS (comes with NPM). Installation is simple. Just run pip install cloudscraper or pip3 install cloudscraper. Then, run npm i cfbypass. Here is an example for using this package in your own project:

// ES6
import CF from "cfbypass"

// CommonJS
const CF = require("cfbypass").default;

const cf = new CF(true); // Set to true if using python3, leave empty if using python
cf.request({
    url: "https://9anime.gs", options: {
        method: "GET"
    }
}).then((data) => {
    console.log(data.text());
}).catch((err) => {
    console.error(err);
})

If you encounter issues installing the Python package, try running python3 -m pip uninstall cloudscraper and then python3 -m pip install cloudscraper.

0.0.13

25 days ago

0.0.14

25 days ago

0.0.12

1 year ago

0.0.11

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago