ip user info

This commit is contained in:
Mateusz Gruszczyński
2026-04-15 08:47:45 +02:00
parent b3db12ba41
commit c0ac69fce7
15 changed files with 624 additions and 759 deletions

16
run.py Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
from ip_analyzer_app import create_app
app = create_app()
if __name__ == '__main__':
print('=' * 70)
print('IP WHOIS Analyzer - Starting')
print('=' * 70)
print()
print('Interface: http://localhost:8799')
print('API Docs: http://localhost:8799/api')
print()
print('Press Ctrl+C to stop')
print()
app.run(debug=True, host='0.0.0.0', port=8799)