Initial commit: ShadowBroker v0.1

Former-commit-id: 8ed321f2ba
This commit is contained in:
anoracleofra-code
2026-03-04 22:44:08 -07:00
commit 362a6e2ceb
130 changed files with 56003 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import asyncio, websockets
async def main():
try:
async with websockets.connect('wss://stream.aisstream.io/v0/stream') as ws:
print('Connected to AIS Stream!')
except Exception as e:
print(f"Error: {e}")
asyncio.run(main())