done
This commit is contained in:
10
bin/dash-generate-components
Executable file
10
bin/dash-generate-components
Executable file
@ -0,0 +1,10 @@
|
||||
#!/Users/jackleene/code/2024-dash_v1/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from dash.development.component_generator import cli
|
||||
if __name__ == "__main__":
|
||||
if sys.argv[0].endswith("-script.pyw"):
|
||||
sys.argv[0] = sys.argv[0][:-11]
|
||||
elif sys.argv[0].endswith(".exe"):
|
||||
sys.argv[0] = sys.argv[0][:-4]
|
||||
sys.exit(cli())
|
10
bin/dash-update-components
Executable file
10
bin/dash-update-components
Executable file
@ -0,0 +1,10 @@
|
||||
#!/Users/jackleene/code/2024-dash_v1/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from dash.development.update_components import cli
|
||||
if __name__ == "__main__":
|
||||
if sys.argv[0].endswith("-script.pyw"):
|
||||
sys.argv[0] = sys.argv[0][:-11]
|
||||
elif sys.argv[0].endswith(".exe"):
|
||||
sys.argv[0] = sys.argv[0][:-4]
|
||||
sys.exit(cli())
|
10
bin/f2py
Executable file
10
bin/f2py
Executable file
@ -0,0 +1,10 @@
|
||||
#!/Users/jackleene/code/2024-dash_v1/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from numpy.f2py.f2py2e import main
|
||||
if __name__ == "__main__":
|
||||
if sys.argv[0].endswith("-script.pyw"):
|
||||
sys.argv[0] = sys.argv[0][:-11]
|
||||
elif sys.argv[0].endswith(".exe"):
|
||||
sys.argv[0] = sys.argv[0][:-4]
|
||||
sys.exit(main())
|
10
bin/flask
Executable file
10
bin/flask
Executable file
@ -0,0 +1,10 @@
|
||||
#!/Users/jackleene/code/2024-dash_v1/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from flask.cli import main
|
||||
if __name__ == "__main__":
|
||||
if sys.argv[0].endswith("-script.pyw"):
|
||||
sys.argv[0] = sys.argv[0][:-11]
|
||||
elif sys.argv[0].endswith(".exe"):
|
||||
sys.argv[0] = sys.argv[0][:-4]
|
||||
sys.exit(main())
|
10
bin/normalizer
Executable file
10
bin/normalizer
Executable file
@ -0,0 +1,10 @@
|
||||
#!/Users/jackleene/code/2024-dash_v1/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from charset_normalizer.cli import cli_detect
|
||||
if __name__ == "__main__":
|
||||
if sys.argv[0].endswith("-script.pyw"):
|
||||
sys.argv[0] = sys.argv[0][:-11]
|
||||
elif sys.argv[0].endswith(".exe"):
|
||||
sys.argv[0] = sys.argv[0][:-4]
|
||||
sys.exit(cli_detect())
|
10
bin/numpy-config
Executable file
10
bin/numpy-config
Executable file
@ -0,0 +1,10 @@
|
||||
#!/Users/jackleene/code/2024-dash_v1/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from numpy._configtool import main
|
||||
if __name__ == "__main__":
|
||||
if sys.argv[0].endswith("-script.pyw"):
|
||||
sys.argv[0] = sys.argv[0][:-11]
|
||||
elif sys.argv[0].endswith(".exe"):
|
||||
sys.argv[0] = sys.argv[0][:-4]
|
||||
sys.exit(main())
|
10
bin/plotly_get_chrome
Executable file
10
bin/plotly_get_chrome
Executable file
@ -0,0 +1,10 @@
|
||||
#!/Users/jackleene/code/2024-dash_v1/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from plotly.io._kaleido import plotly_get_chrome
|
||||
if __name__ == "__main__":
|
||||
if sys.argv[0].endswith("-script.pyw"):
|
||||
sys.argv[0] = sys.argv[0][:-11]
|
||||
elif sys.argv[0].endswith(".exe"):
|
||||
sys.argv[0] = sys.argv[0][:-4]
|
||||
sys.exit(plotly_get_chrome())
|
10
bin/pybabel
Executable file
10
bin/pybabel
Executable file
@ -0,0 +1,10 @@
|
||||
#!/Users/jackleene/code/2024-dash_v1/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from babel.messages.frontend import main
|
||||
if __name__ == "__main__":
|
||||
if sys.argv[0].endswith("-script.pyw"):
|
||||
sys.argv[0] = sys.argv[0][:-11]
|
||||
elif sys.argv[0].endswith(".exe"):
|
||||
sys.argv[0] = sys.argv[0][:-4]
|
||||
sys.exit(main())
|
10
bin/renderer
Executable file
10
bin/renderer
Executable file
@ -0,0 +1,10 @@
|
||||
#!/Users/jackleene/code/2024-dash_v1/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from dash.development.build_process import renderer
|
||||
if __name__ == "__main__":
|
||||
if sys.argv[0].endswith("-script.pyw"):
|
||||
sys.argv[0] = sys.argv[0][:-11]
|
||||
elif sys.argv[0].endswith(".exe"):
|
||||
sys.argv[0] = sys.argv[0][:-4]
|
||||
sys.exit(renderer())
|
Reference in New Issue
Block a user