Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 402 Bytes

Readme.md

File metadata and controls

13 lines (11 loc) · 402 Bytes

This is a solver to generate valid solutions for friendlycaptcha Challenges with Python.

Usage:

# -*- coding: utf-8 -*-
import friendlycaptcha as fc

if __name__ == "__main__":
    puzzle = fc.askforPuzzle('FCMTJL2D38C279E8', 'https://api.friendlycaptcha.com/api/v1/puzzle')
    print(f'Puzzle: {puzzle}')
    solution = fc.solvePuzzle(puzzle)
    print(f'Solution: {solution}')