Playing Hearthstone with an Amazon Echo using Python!: https://www.reddit.com/r/Python/comments/5ktxxv/playing_hearthstone_with_an_amazon_echo_using/
reddit
Playing Hearthstone with an Amazon Echo using Python! • /r/Python
3 points and 2 comments so far on reddit
[Py3 Flask Google Cloud API] WebApp to detect object in image and translate it to any language: https://www.reddit.com/r/Python/comments/5ku3kg/py3_flask_google_cloud_api_webapp_to_detect/
reddit
[Py3 + Flask + Google Cloud API] WebApp to detect... • /r/Python
2 points and 0 comments so far on reddit
Python 3.6 "easter egg": 'help' now displays type-hinted function signatures nicely: https://www.reddit.com/r/Python/comments/5ku0tc/python_36_easter_egg_help_now_displays_typehinted/
reddit
Python 3.6 "easter egg": 'help' now displays... • /r/Python
I was discouraged from using type-hints in Python 3.(<=5), because the signatures displayed to user via `help` or (or, say, `shift-tab` in Jupyter...
PicklePipe - Object serialization protocols over network interfaces: https://www.reddit.com/r/Python/comments/5kulxt/picklepipe_object_serialization_protocols_over/
reddit
PicklePipe - Object serialization protocols over... • /r/Python
1 points and 0 comments so far on reddit
[Free for Limited Time] Python Fundamentals: https://www.reddit.com/r/Python/comments/5kupaa/free_for_limited_time_python_fundamentals/
reddit
[Free for Limited Time] Python Fundamentals • /r/Python
https://www.udemy.com/python-fundamentals/ I have also added other development and programming courses at http://meritcoupon.com
Drchrono – Help us fix healthcare through Django and Python: https://www.drchrono.com/careers/
Drchrono
Careers - Join Us | DrChrono
Find job opportunities and join us on our mission to improve healthcare through our #1 award-winning iOS and web-based Electronic Health Record (EHR) platform.
Anyone know of a fast HTML5-compliant parser?: https://www.reddit.com/r/Python/comments/5kv6s5/anyone_know_of_a_fast_html5compliant_parser/
reddit
Anyone know of a fast HTML5-compliant parser? • /r/Python
I'm currently using lxml, which is the fastest HTML parser I've seen, but it doesn't always do error recovery correctly, and sometimes it throws...
Python 3.5 wont install and I need that version.: https://www.reddit.com/r/Python/comments/5kv9l9/python_35_wont_install_and_i_need_that_version/
reddit
Python 3.5 wont install and I need that version. • /r/Python
I try to install python 3.5.2 when i get: http://prntscr.com/dp6adk <-- "User Cancelled Installation" when I dont cancell. 3.5.1:...
What is the best way to store and access large amounts of data in Python?: https://www.reddit.com/r/Python/comments/5kvc4r/what_is_the_best_way_to_store_and_access_large/
reddit
What is the best way to store and access large amounts... • /r/Python
I'm currently sampling 3 different voltages every second, and I want to save this data and graph it the most efficiently way possible. I've heard...
Good way to find all similar/duplicate images given a large number of files?: https://www.reddit.com/r/Python/comments/5kvjvr/good_way_to_find_all_similarduplicate_images/
reddit
Good way to find all similar/duplicate images given a... • /r/Python
I'm writing an image tagger/library management program and one thing I'd like to implement is the ability to find similar/duplicate images. It's...
How to slide one image over another one efficiently using numpy?: http://stackoverflow.com/questions/41330517/how-to-slide-one-image-over-another-one-efficiently-using-numpy
Stackoverflow
How to slide one image over another one efficiently using numpy?
I have a large image as an 2D array (let's assume that it is a 500 by 1000 pixels gray scale image). And I have one small image (let's say is it 15 by 15 pixels). I would like to slide the small im...
Need help with reddit-auto-respond: https://www.reddit.com/r/Python/comments/5kw1yz/need_help_with_redditautorespond/
reddit
Need help with reddit-auto-respond • /r/Python
So trying to get https://github.com/kragniz/reddit-auto-respond work, got these errors - when typin in ./responder to terminal , No...
How to import Tiled into python using pygame: https://www.reddit.com/r/Python/comments/5kw2il/how_to_import_tiled_into_python_using_pygame/
reddit
How to import Tiled into python using pygame • /r/Python
Basically what the title says. I'm on windows 10 and im using the windows 32 bit version for tiled and pycharm with version 3.5.2 .
What's the situation with SSL in Python 3.6?: https://www.reddit.com/r/Python/comments/5kw2q5/whats_the_situation_with_ssl_in_python_36/
reddit
What's the situation with SSL in Python 3.6? • /r/Python
A noob here. Playing around with Python 3.6. One of my web-scrapers does not work with it (*requests.exceptions.SSLError: Can't connect to HTTPS...
why calling shell command `subprocess` with python is it so complicated than system() with ruby?: https://www.reddit.com/r/Python/comments/5kvy7b/why_calling_shell_command_subprocess_with_python/
reddit
why calling shell command `subprocess` with python is... • /r/Python
I am new to python, I am trying to switch from `Ruby` to `Python`, a part of my script I want to run a simple shell command, see the stdout in...
Download a Google Sheets document as an Excel file using Python: https://www.reddit.com/r/Python/comments/5kwgf0/download_a_google_sheets_document_as_an_excel/
reddit
Download a Google Sheets document as an Excel file... • /r/Python
1 points and 0 comments so far on reddit
How to put an "arbitrary" operation into a sliding window using Theano?: http://stackoverflow.com/questions/41341973/how-to-put-an-arbitrary-operation-into-a-sliding-window-using-theano
Stackoverflow
How to put an "arbitrary" operation into a sliding window using Theano?
I want to define some function on a matrix X. For example mean(pow(X - X0, 2)), where X0 is another matrix (X0 is fixed / constant). To make it more specific, let's assume that both X and X0 are 10...