Upload files to "/"

This commit is contained in:
2026-07-06 06:10:43 +00:00
parent 08ce0da3a8
commit d561d4c8b4
3 changed files with 300 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
import asyncio
from bleak import BleakScanner
async def test():
print("[*] Scanning for 5 seconds...")
devices = await BleakScanner.discover(timeout=5)
for d in devices:
print(f" {d.address} - {d.name}")
print("[+] Scan complete")
asyncio.run(test())