Last updated:
0 purchases
pyfarmer 2.0.1
PyFarmer
Introduction
A farmer for your Destructive Farm
You can read the documentation at rikyiso01.github.io/pyfarmer
Code Samples
from httpx import post
from pyfarmer import farm, print_exception
def main(ip: str):
for flag_id in ["a", "b", "c"]:
try:
r = post(
f"http://{ip}:5000/api/products/{flag_id}/download?a=/api/register"
)
flag = r.text
yield flag
except:
print_exception()
if __name__ == "__main__":
farm(main)
Installation
Install locally with:
pip install pyfarmer
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.