Add windows support (experimental)

pull/12/head
fuomag9 2020-02-05 13:43:03 +01:00
parent f0b190a86e
commit 15c1afa5ec
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
#!/usr/bin/python
import readline
try:
import readline
except ImportError:
import pyreadline as readline
from attacks import *
import urllib3