mirror of
https://github.com/cowrie/cowrie.git
synced 2025-07-01 18:07:27 -04:00
13 lines
234 B
Python
Executable File
13 lines
234 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
from os import path
|
|
|
|
cowriepath = path.dirname(sys.argv[0]) + "/../src"
|
|
sys.path.append(cowriepath)
|
|
|
|
from cowrie.scripts import asciinema # noqa: E402
|
|
|
|
if __name__ == "__main__":
|
|
asciinema.run()
|