Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
1bd51e92
Commit
1bd51e92
authored
Jun 10, 2013
by
D1plo1d
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moving the prontserve initialization inside __main__
parent
7d797b75
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
37 deletions
+38
-37
prontserve.py
prontserve.py
+38
-37
No files found.
prontserve.py
View file @
1bd51e92
...
...
@@ -521,32 +521,33 @@ class PrintJobQueue(EventEmitter):
# Server Start Up
# -------------------------------------------------
parser
=
argparse
.
ArgumentParser
(
if
__name__
==
"__main__"
:
parser
=
argparse
.
ArgumentParser
(
description
=
'Runs a 3D printer server using the Construct Protocol'
)
)
parser
.
add_argument
(
'--dry-run'
,
default
=
False
,
action
=
'store_true'
,
parser
.
add_argument
(
'--dry-run'
,
default
=
False
,
action
=
'store_true'
,
help
=
'Does not connect to the 3D printer'
)
)
args
=
parser
.
parse_args
()
dry_run
=
args
.
dry_run
args
=
parser
.
parse_args
()
dry_run
=
args
.
dry_run
def
warn_if_dry_run
():
def
warn_if_dry_run
():
if
dry_run
:
for
i
in
range
(
0
,
7
):
sys
.
stdout
.
write
(
"
\x1B
[0;33m Dry Run
\x1B
[0m"
)
print
""
print
"Prontserve is starting..."
prontserve
=
Prontserve
(
dry_run
=
dry_run
)
if
dry_run
==
False
:
prontserve
.
do_connect
(
""
)
print
"Prontserve is starting..."
prontserve
=
Prontserve
(
dry_run
=
dry_run
)
if
dry_run
==
False
:
prontserve
.
do_connect
(
""
)
time
.
sleep
(
1
)
prontserve
.
run_sensor_loop
()
prontserve
.
run_print_queue_loop
()
time
.
sleep
(
1
)
prontserve
.
run_sensor_loop
()
prontserve
.
run_print_queue_loop
()
if
__name__
==
"__main__"
:
application
.
listen
(
8888
)
print
"
\n
"
+
"-"
*
80
welcome
=
textwrap
.
dedent
(
u"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment