[binarystar]
| Hi folks,
|
| I am writing a script to print a few thousand pdf documents and I need
| to have some control over the number of jobs that are sent to the
| printer queue at time ... something along the lines of
|
| if number_jobs > MAX_JOBS:
| time.sleep(10)
| else:
| #Print
Hi folks,
I am writing a script to print a few thousand pdf documents and I need
to have some control over the number of jobs that are sent to the
printer queue at time ... something along the lines of
if number_jobs > MAX_JOBS:
time.sleep(10)
else:
#Print More Files
I have been investi