How to install SSL certificate in Python phantomjs?: http://stackoverflow.com/questions/40600745/how-to-install-ssl-certificate-in-python-phantomjs
Stackoverflow
How to install SSL certificate in Python phantomjs?
How do I install a SSL certificate in PhantomJS with python?
what is the correct way to feed an ssl certificate into phantomjs
Says in the command line, to use --ssl-certificates-path.
what is the correct way to feed an ssl certificate into phantomjs
Says in the command line, to use --ssl-certificates-path.
Delaying 1 second per request, not enough for 3600 per hour: http://stackoverflow.com/questions/39676973/delaying-1-second-per-request-not-enough-for-3600-per-hour
Stackoverflow
Delaying 1 second per request, not enough for 3600 per hour
The Amazon API limit is apparently 1 req per second or 3600 per hour. So I implemented it like so:
while True:
#sql stuff
time.sleep(1)
result = api.item_lookup(row[0], ResponseGroup='...
while True:
#sql stuff
time.sleep(1)
result = api.item_lookup(row[0], ResponseGroup='...
[Secret santa matcher] How do I create a matching program that makes sure people aren't matched to people in their same department and no one gives a gift to the person who is giving them a gift?: https://www.reddit.com/r/Python/comments/5e1rmv/secret_santa_matcher_how_do_i_create_a_matching/
reddit
[Secret santa matcher] How do I create a matching... • /r/Python
I'm thinking about writing a secret santa matcher for work, but instead of just randomly matching people, I want to make sure that everyone is...
[Question] Packaging Python interface with hardware.: https://www.reddit.com/r/Python/comments/5e1s8k/question_packaging_python_interface_with_hardware/
reddit
[Question] Packaging Python interface with hardware. • /r/Python
I don't really know where to ask such questions, but they're related to including Python as a main interface for a piece of hardware. A few basic...
Bug in SQLAlchemy Rollback after DB Exception?: http://stackoverflow.com/questions/40681371/bug-in-sqlalchemy-rollback-after-db-exception
Stackoverflow
Bug in SQLAlchemy Rollback after DB Exception?
My SQLAlchemy application (running on top of MariaDB) includes two models MyModelA and MyModelB where the latter is a child-record of the former:
class MyModelA(db.Model):
a_id = db.Column(db.
class MyModelA(db.Model):
a_id = db.Column(db.
SMTPlib Attachments not received: http://stackoverflow.com/questions/40688768/smtplib-attachments-not-received
Stack Overflow
SMTPlib Attachments not received
I've been using code based on the snippet at http://datamakessense.com/easy-scheduled-emailing-with-python-for-typical-bi-needs/ to send PDF attachments to customers through my company's email. We...
Library for Postgresql -- psycopg2 or anything else?: https://www.reddit.com/r/Python/comments/5e2rgq/library_for_postgresql_psycopg2_or_anything_else/
reddit
Library for Postgresql -- psycopg2 or anything else? • /r/Python
I've found a few libraries for Postgresql and it's difficult to determine which one is most popular one and recommended. For now I've chosen...
pipfile: a new (and much better!) way to declare dependencies for your Python applications.: https://www.reddit.com/r/Python/comments/5e2vci/pipfile_a_new_and_much_better_way_to_declare/
reddit
pipfile: a new (and much better!) way to declare... • r/Python
131 points and 61 comments so far on reddit
Out of the Box Docker Multi-container for Flask uWSGI Nginx MySQL: https://www.reddit.com/r/Python/comments/5e34ve/out_of_the_box_docker_multicontainer_for_flask/
reddit
Out of the Box Docker Multi-container for Flask +... • /r/Python
1 points and 0 comments so far on reddit
A modular always-on voice controlled personal assistant with Python and Raspberry pi: https://www.reddit.com/r/Python/comments/5e39m0/a_modular_alwayson_voice_controlled_personal/
reddit
A modular always-on voice controlled personal... • /r/Python
64 points and 14 comments so far on reddit
Clarification wanted for make_step function of Google's deep dream script: http://stackoverflow.com/questions/40690099/clarification-wanted-for-make-step-function-of-googles-deep-dream-script
Stackoverflow
Clarification wanted for make_step function of Google's deep dream script
From https://github.com/google/deepdream/blob/master/dream.ipynb
def objective_L2(dst): # Our training objective. Google has since release a way to load
dst.diff[:] = dst.data #
def objective_L2(dst): # Our training objective. Google has since release a way to load
dst.diff[:] = dst.data #
HTML not rendering properly with Canopy 1.7.1.3323 / IPython 4.1.2: http://stackoverflow.com/questions/37041696/html-not-rendering-properly-with-canopy-1-7-1-3323-ipython-4-1-2
Stackoverflow
HTML not rendering properly with Canopy 1.7.1.3323 / IPython 4.1.2
I've just upgraded to Canopy 1.7.1; I think this problem stems from the change in IPython version from 2.4.1 to 4.1.2.
The issue I have is that calling a DataFrame object in Python seems to use the
The issue I have is that calling a DataFrame object in Python seems to use the
How Python Makes Working With Data More Difficult in the Long Run: https://www.reddit.com/r/Python/comments/5e3wbe/how_python_makes_working_with_data_more_difficult/
reddit
How Python Makes Working With Data More Difficult in... • /r/Python
1 points and 0 comments so far on reddit
I've wound up feeling tentatively enthusiastic about Python 3: https://www.reddit.com/r/Python/comments/5e4391/ive_wound_up_feeling_tentatively_enthusiastic/
reddit
I've wound up feeling tentatively enthusiastic about... • /r/Python
1 points and 0 comments so far on reddit
Conflicted whether to use a decorator to raise an exception or not, what's the correct way to do it?: https://www.reddit.com/r/Python/comments/5e43nv/conflicted_whether_to_use_a_decorator_to_raise_an/
reddit
Conflicted whether to use a decorator to raise an... • /r/Python
I'm creating an "API"/module for a website using requests and bs4, a majority of the methods require authenthication, but some of them do not....