I need to build a new library for use by developers in the firm. What best practices should I be mindful of?: https://www.reddit.com/r/Python/comments/4bhfqn/i_need_to_build_a_new_library_for_use_by/
reddit
I need to build a new library for use by developers in... • /r/Python
I'm thinking things in terms of IDE, virtualenvs, deployment processes, modules, classes, etc. Would appreciate tips!
How to build a CRUD application using Flask (Python Framework): https://www.reddit.com/r/Python/comments/4bhjrh/how_to_build_a_crud_application_using_flask/
reddit
How to build a CRUD application using Flask (Python... • /r/Python
1 points and 0 comments so far on reddit
Move from local machine to cloud?: https://www.reddit.com/r/Python/comments/4bhn8a/move_from_local_machine_to_cloud/
reddit
Move from local machine to cloud? • /r/Python
Python 2.7 setup on local Win32 machine currently, running a NLP operation. This requires I have two command consoles open at anytime--Stanford...
Python, Machine Learning, and Language Wars: http://sebastianraschka.com/blog/2015/why-python.html
Sebastian Raschka, PhD
Python, Machine Learning, and Language Wars
Oh god, another one of those subjective, pointedly opinionated click-bait headlines? Yes! Why did I bother writing this? Well, here is one of the most trivia...
PSA: pep8 and pep257 (the tools) are getting renamed to pycodestyle and pydocstyle, respectively: https://www.reddit.com/r/Python/comments/4bhwld/psa_pep8_and_pep257_the_tools_are_getting_renamed/
reddit
PSA: pep8 and pep257 (the tools) are getting renamed... • /r/Python
1 points and 2 comments so far on reddit
Command line tool to fix a few common po files syntax errors.: https://www.reddit.com/r/Python/comments/4bhzdr/command_line_tool_to_fix_a_few_common_po_files/
reddit
Command line tool to fix a few common po files syntax... • /r/Python
1 points and 1 comments so far on reddit
Pick random lines from a huge file in Python: https://www.reddit.com/r/Python/comments/4bi1q7/pick_random_lines_from_a_huge_file_in_python/
reddit
Pick random lines from a huge file in Python • /r/Python
HI All, I have a csv file of size 10 GB with about 300 million rows, having quite a lot of duplicate rows in the file as well. I want to pick...
Looking for an interactive 3d network graphing lib (py3 preferred, though not required): https://www.reddit.com/r/Python/comments/4bijab/looking_for_an_interactive_3d_network_graphing/
reddit
Looking for an interactive 3d network graphing lib... • /r/Python
I'm looking for a lib that could render linked node graphs in 3d, with each node having defined spatial co-ordinates. The graph itself may be...
Property based testing with Hypothesis and dividing by 11 (a basic example of using Hypothesis).: https://www.reddit.com/r/Python/comments/4bir9v/property_based_testing_with_hypothesis_and/
reddit
Property based testing with Hypothesis and dividing by... • /r/Python
1 points and 0 comments so far on reddit
Learning Python On Codeademy livecoding.tv watch people code products live: https://www.reddit.com/r/Python/comments/4bgh1d/learning_python_on_codeademy_livecodingtv_watch/
subprocess_check_output takes a large and unreliable amount of time to run. Why?: https://www.reddit.com/r/Python/comments/4bjki8/subprocess_check_output_takes_a_large_and/
reddit
subprocess_check_output takes a large and unreliable... • /r/Python
#!/usr/bin/env python import subprocess import time end = time.time()+1 while (time.time() < end): ...
Could someone give me feedback on this code?: https://www.reddit.com/r/Python/comments/4bjmf9/could_someone_give_me_feedback_on_this_code/
reddit
Could someone give me feedback on this code? • /r/Python
I have been coding Python for a while now and would just like someone to give me feedback on my code. I would like to know what is...
Thermal printer with raspberry pi 3 randomly bugging out: https://www.reddit.com/r/Python/comments/4bjwo9/thermal_printer_with_raspberry_pi_3_randomly/
reddit
Thermal printer with raspberry pi 3 randomly bugging out • /r/Python
I need to set up a receipt printer to work with a raspberry pi for a project I'm working on yet I've run into an issue. I'm using a raspberry pi 3...
Control a windows program (press buttons etc.): https://www.reddit.com/r/Python/comments/4bk22i/control_a_windows_program_press_buttons_etc/
reddit
Control a windows program (press buttons etc.) • /r/Python
Hi, I have a windows program and I need to automatically press a button "RUN" in that program. I can use pywin32, but I want a better solution...
Dependency injection is causing modules to become coupled, what should I do instead?: https://www.reddit.com/r/Python/comments/4bjxlv/dependency_injection_is_causing_modules_to_become/
reddit
Dependency injection is causing modules to become... • /r/Python
Let's say I have some data which is generated by a function in `module1` and needed by a function in `module2`. To make both modules testable,...
cx_freeze: How do I move modules to subdir?: https://www.reddit.com/r/Python/comments/4bkhno/cx_freeze_how_do_i_move_modules_to_subdir/
reddit
cx_freeze: How do I move modules to subdir? • /r/Python
I have a working application converted to .exe using **cx_freeze**. The problem is the directory structure is: / main.py ...