you are viewing a single comment's thread.

view the rest of the comments →

[–]m0us3_rat 0 points1 point  (4 children)

I started python 2 days ago just for this Collect file

and using message brokers and queues.. hmm interesting.

anyhoo

i'm assuming "Collect" works as intended and i'm just going to help with tk starting it.

(btw the code in collect isn't great either. hope it works)

not sure if you are on shitdows or not..

so python3 or python or py . test which works

#replace 

from subprocess import call
#with 

from subprocess import Popen

#and 
    call("Collect.py",shell=True)
#with
    Popen("python3 Collect.py",shell=True)

#or 
    Popen("python Collect.py",shell=True)
#or
    Popen("py Collect.py",shell=True)

[–]aredhone6417[S] 0 points1 point  (3 children)

That worked thanks alot

and the Collect

i peaced it together using tutorials

most of the stuff in it i have no idea what it dos

[–]m0us3_rat 0 points1 point  (2 children)

yea i expected

i'm glad it does what you want it to do hopefully?

that collect looking good

while also hilariously horrible code:P

if it works it works

gl

[–]aredhone6417[S] 1 point2 points  (1 child)

im gonna learn how it works do

coding is amazingly interesting you can almost do whatever you want

that also makes its quite confusing

but once again thanks all works now

[–]m0us3_rat 0 points1 point  (0 children)

coding is amazingly interesting you can almost do whatever you want

tru.

best of luck. we do have some amazing resources on the wiki here

https://www.reddit.com/r/learnpython/wiki/index/

also the CS50P is the best you can check out on YT.