What are the best Python Youtube channels?: https://www.reddit.com/r/Python/comments/4bgu3f/what_are_the_best_python_youtube_channels/
reddit
What are the best Python Youtube channels? • /r/Python
In your opinion, which one's are the best Python channels on Youtube. I'm looking for news, maybe tutorials, reviews and all kind of stuff related...
Concentration: A simple Python 3 command line tool to improve focus while working: https://www.reddit.com/r/Python/comments/4bh8aw/concentration_a_simple_python_3_command_line_tool/
reddit
Concentration: A simple Python 3 command line tool to... • /r/Python
1 points and 0 comments so far on reddit
A Python proxy server to support data compression?: https://www.reddit.com/r/Python/comments/4bha5g/a_python_proxy_server_to_support_data_compression/
reddit
A Python proxy server to support data compression? • /r/Python
I'm fairly sure this doesn't exist, but i figure i would ask the python community what -is- out there to borrow from to solve the below...
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): ...