Using python for software installation / deployment: https://www.reddit.com/r/Python/comments/749whx/using_python_for_software_installation_deployment/
reddit
Using python for software installation / deployment • r/Python
Two parts make up this: #1: Puppet will be part of this script but I would like it to show all the installation configurations / dependencies as...
About to rage break laptop over this regex: https://www.reddit.com/r/Python/comments/74a00q/about_to_rage_break_laptop_over_this_regex/
reddit
About to rage break laptop over this regex • r/Python
I need to match: root 1 0 0 May24 ? 00:00:32 /sbin/init root 2 0 0 May24 ? 00:00:00 [kthreadd] Each are...
Why did they change this in Python3? The comment is right, you know: https://www.reddit.com/r/Python/comments/74a6nb/why_did_they_change_this_in_python3_the_comment/
reddit
Why did they change this in Python3? The comment is... • r/Python
1 points and 3 comments so far on reddit
Programming buddy for edX Python course from MIT: https://www.reddit.com/r/Python/comments/74a8cf/programming_buddy_for_edx_python_course_from_mit/
reddit
Programming buddy for edX Python course from MIT • r/Python
Hi there, is anyone interested in being my programming buddy for edX Python course, it's a self-paced course -...
How to reuse completions from PathCompleter in prompt_toolkit: https://stackoverflow.com/questions/46528473/how-to-reuse-completions-from-pathcompleter-in-prompt-toolkit
Stackoverflow
How to reuse completions from PathCompleter in prompt_toolkit
I am creating a REPL tool for my project that (simplified for clarity) either directly executes entered commands or (if a command ".x some/path/to/file" is entered) reads and executes them from fil...
I made a user authentication micro-service with Flask and Docker: https://www.reddit.com/r/Python/comments/74ajfx/i_made_a_user_authentication_microservice_with/
reddit
I made a user authentication micro-service with Flask... • r/Python
2 points and 0 comments so far on reddit
what are the disadvantages of semi-standalone softwares: https://www.reddit.com/r/Python/comments/74b485/what_are_the_disadvantages_of_semistandalone/
reddit
what are the disadvantages of semi-standalone softwares • r/Python
I am working on a big python-Django project, and I am using py2app to convert the webapp to a semi-standalone software. I find this solution very...
[Beginner] Why wont my random numbers generate higher than 5?: https://www.reddit.com/r/Python/comments/74bu40/beginner_why_wont_my_random_numbers_generate/
reddit
[Beginner] Why wont my random numbers generate higher... • r/Python
Hi folks. I took a bit of a crash course in Python and it was suggested that as practice I make a random dice roller. So, I did. But none of my...
[beginner] how to replace one line in text file?: https://www.reddit.com/r/Python/comments/74caer/beginner_how_to_replace_one_line_in_text_file/
reddit
[beginner] how to replace one line in text file? • r/Python
Hey guys, noob here. I have a whole story written as a txt file with lines and I’m trying to replace a certain line. Def...
Scikit-image threshold_local not recognized: https://www.reddit.com/r/Python/comments/74d0ha/scikitimage_threshold_local_not_recognized/
reddit
Scikit-image threshold_local not recognized • r/Python
I am trying to run this python code: https://github.com/GoToLoop/CenturyOfTheSun/blob/master/segmenting.py After installing the latest...
How to write a function that returns the positions of a vowel?: https://www.reddit.com/r/Python/comments/74csd4/how_to_write_a_function_that_returns_the/
reddit
How to write a function that returns the positions of a... • r/Python
Hi, I'm trying to write a function where you input a string, and the function finds the positions of all the vowels, and returns it in a list. I...
Python subprocess in .exe: https://stackoverflow.com/questions/46537800/python-subprocess-in-exe
Stackoverflow
Python subprocess in .exe
I'm creating a python script that will copy files and folder over the network. it's cross-platform so I make an .exe file using pynsist
I used popen method of the subprocess module
if I run .py f...
I used popen method of the subprocess module
if I run .py f...
Querying a Neo4j DB using Django: https://stackoverflow.com/questions/46490638/querying-a-neo4j-db-using-django
Stackoverflow
Querying a Neo4j DB using Django
I apologize before hand as the Django way of thinking is still very alien to me. I am trying to generate a very simple page that justs lists all results from a simple cypher query using Neo4j and D...
Seemingly infinite recursion with coroutines: https://stackoverflow.com/questions/46529767/seemingly-infinite-recursion-with-coroutines
Stackoverflow
Seemingly infinite recursion with coroutines
The following is taken from David Beazley's slides on generators (here for anybody interested).
A Task class is defined which wraps a generator that yields futures, the Task class, in full (w/o e...
A Task class is defined which wraps a generator that yields futures, the Task class, in full (w/o e...
Communicating with a python process: https://www.reddit.com/r/Python/comments/74es9i/communicating_with_a_python_process/
reddit
Communicating with a python process • r/Python
Hello, I've a python program that computes something every second. I need an interface (web) to alter a constant in this computation while it's...