8th day of python challenges 111-117
This commit is contained in:
10
venv/bin/epylint
Executable file
10
venv/bin/epylint
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/home/abd/PycharmProjects/paython-by-learn/venv/bin/python3.6
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
|
||||
from pylint import run_epylint
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(run_epylint())
|
10
venv/bin/f2py
Executable file
10
venv/bin/f2py
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/home/abd/PycharmProjects/paython-by-learn/venv/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
|
||||
from numpy.f2py.f2py2e import main
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(main())
|
10
venv/bin/f2py3
Executable file
10
venv/bin/f2py3
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/home/abd/PycharmProjects/paython-by-learn/venv/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
|
||||
from numpy.f2py.f2py2e import main
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(main())
|
10
venv/bin/f2py3.6
Executable file
10
venv/bin/f2py3.6
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/home/abd/PycharmProjects/paython-by-learn/venv/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
|
||||
from numpy.f2py.f2py2e import main
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(main())
|
10
venv/bin/isort
Executable file
10
venv/bin/isort
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/home/abd/PycharmProjects/paython-by-learn/venv/bin/python3.6
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
|
||||
from isort.main import main
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(main())
|
10
venv/bin/pylint
Executable file
10
venv/bin/pylint
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/home/abd/PycharmProjects/paython-by-learn/venv/bin/python3.6
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
|
||||
from pylint import run_pylint
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(run_pylint())
|
10
venv/bin/pyreverse
Executable file
10
venv/bin/pyreverse
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/home/abd/PycharmProjects/paython-by-learn/venv/bin/python3.6
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
|
||||
from pylint import run_pyreverse
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(run_pyreverse())
|
10
venv/bin/symilar
Executable file
10
venv/bin/symilar
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/home/abd/PycharmProjects/paython-by-learn/venv/bin/python3.6
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
|
||||
from pylint import run_symilar
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(run_symilar())
|
Reference in New Issue
Block a user