Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
/ Cango Public archive

A library for executing commands asynchronously.💥

License

Notifications You must be signed in to change notification settings

forkerss/Cango

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cango 💥

A library for executing commands asynchronously.

From lotuc, i just encapsulate the module for reuse.

Installation

pip install Cango

Usage

You can override the process_stdout,process_stderr method

# Simple use of Cango
from Cango import Cango

cmd = ["masscan", "--ports", ports, ip_range]
masscan = Cango(cmd)
masscan.run()
print(masscan.finished)
for item in masscan.genresult():
    if item:
        print(item)

About

A library for executing commands asynchronously.💥

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages