feat: flowsint-transforms, flowsint-types, flowsint-core

This commit is contained in:
dextmorgn
2025-08-13 17:04:11 +02:00
parent c770b752ed
commit 5b62d9efba
200 changed files with 26326 additions and 1120 deletions

View File

@@ -0,0 +1,20 @@
import re
from typing import Dict
from app.tools.network.reconcrawl import ReconCrawlTool
tool = ReconCrawlTool()
def test_name():
assert tool.name() == "reconcrawl"
def test_description():
assert tool.description() == "Emails and phone numbers crawler from websites by analyzing their HTML and embedded scripts."
def test_category():
assert tool.category() == "Crawler"
def test_install():
tool.install()
assert tool.is_installed() == True