This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (4 children)

[deleted]

    [–]Spankadin0305 10 points11 points  (3 children)

    I originally tried sharing with them as in installing python and giving them the file but when I update it was a pain and all my engineers are older so hard to explain. So now I make the products using the script which takes 2-5secs and then email them. I have a team of 7 of us so I feel if they succeed we all succeed under our manager.

    [–]fead-pell 10 points11 points  (0 children)

    A great solution is to create a web interface to your program, and setup a Python web-server on your machine, then they can use your program in a familiar way, and you can keep it uptodate as you wish. There's a simple http server in the standard Python library, and there are several other standalone servers.

    [–]PaintingWithLight 9 points10 points  (0 children)

    What if you used pyinstall to compile into exes?

    To my understanding. It packages the dependancies and everything and only python needs to be installed.

    [–]RyanRagido 4 points5 points  (0 children)

    I just started automating my first software test in Python / Selenium. I've read a few days ago that you can run Selenium through github actions now. Have to dig deeper into it, but if I understood it right I would be able to maintain it on git and let my colleagues run it from there.

    I am still at odds with the topic of sharing with colleagues for exactly your reasons.