Developer Challenge – Great prizes including MBP and trip to Amsterdam [EUROPE ONLY]: https://www.reddit.com/r/Python/comments/5f1yoa/developer_challenge_great_prizes_including_mbp/
reddit
Developer Challenge – Great prizes including MBP and... • /r/Python
0 points and 0 comments so far on reddit
Help with variable scope and functions in Python.: https://www.reddit.com/r/Python/comments/5f25ir/help_with_variable_scope_and_functions_in_python/
reddit
Help with variable scope and functions in Python. • /r/Python
I'm rather new to programming. I'm almost finished with my first class about logic and design. We mainly used pseudocode and I am just now...
Created a Reddit image generator in GUI(tkinter): https://www.reddit.com/r/Python/comments/5f28eg/created_a_reddit_image_generator_in_guitkinter/
reddit
Created a Reddit image generator in GUI(tkinter) • /r/Python
So I've dedicated the last few weeks to creating an image generator which scrapes all image and video file types from reddit. Either enter some...
Developing python with vim, what plugin to choose? (python-mode vs. jedi-vim): https://www.reddit.com/r/Python/comments/5f2fri/developing_python_with_vim_what_plugin_to_choose/
reddit
Developing python with vim, what plugin to choose?... • /r/Python
I am an experienced Programmer and experienced vim user. Right now I am switching from other languages to Python 3 which is a new-ish language for...
How hard would it be to write facebook streaming program?: https://www.reddit.com/r/Python/comments/5f2knp/how_hard_would_it_be_to_write_facebook_streaming/
reddit
How hard would it be to write facebook streaming program? • /r/Python
I wrote a game in PyGame which requires me to stream it to facebook. I want to do it under GPU-less linux VPS, OBS says no to that. Could anyone...
Need recommendation for a python neural network lib: https://www.reddit.com/r/Python/comments/5f30jb/need_recommendation_for_a_python_neural_network/
reddit
Need recommendation for a python neural network lib • /r/Python
Hi everyone, I need to do a simple assignment in neural networks using python to predict car prices. It's a simple application of existing...
What are some cool features that you discovered about python?: https://www.reddit.com/r/Python/comments/5f3koe/what_are_some_cool_features_that_you_discovered/
reddit
What are some cool features that you discovered about... • /r/Python
41 points and 23 comments so far on reddit
Noob question: How to change the command to run program on pycharm: https://www.reddit.com/r/Python/comments/5f3r58/noob_question_how_to_change_the_command_to_run/
reddit
Noob question: How to change the command to run... • /r/Python
I am new to python and pycharm. When I run a program on pycharm, I need to press: shift + fn + f10. This is sort of inconvenient, and I was...
Failing to install Setuptools 29.0.1 on OS Sierra.: https://www.reddit.com/r/Python/comments/5f3t45/failing_to_install_setuptools_2901_on_os_sierra/
reddit
Failing to install Setuptools 29.0.1 on OS Sierra. • /r/Python
I am trying to install setuptools and I get this error: error: can't create or remove files in install directory [Errno 13]...
Get createdDate from Google Drive Python API for downloads: http://stackoverflow.com/questions/40738961/get-createddate-from-google-drive-python-api-for-downloads
Stack Overflow
Get createdDate from Google Drive Python API for downloads
I want to create a Python script to backup Google Drive files as a bit of fun / learning, but I am stuck. My script below did work, but it just made the last modified date and created date of all the
Since the example in the documentation is broken, how do I solve a non-linear system of equations numerically in SymPy?: http://stackoverflow.com/questions/40794262/since-the-example-in-the-documentation-is-broken-how-do-i-solve-a-non-linear-sy
Stackoverflow
Since the example in the documentation is broken, how do I solve a non-linear system of equations numerically in SymPy?
The documentation on nonlinsolve gives this example:
from sympy.core.symbol import symbols
from sympy.solvers.solveset import nonlinsolve
x, y, z = symbols('x, y, z', real=True)
nonlinsolve([x*y -...
from sympy.core.symbol import symbols
from sympy.solvers.solveset import nonlinsolve
x, y, z = symbols('x, y, z', real=True)
nonlinsolve([x*y -...
post_save signal isn't called: http://stackoverflow.com/questions/40746137/post-save-signal-isnt-called
Stack Overflow
post_save signal isn't called
I've already read all related questions.
I have two Django projects, and signals work fine in one, but do not work in second one (I've just copy-pasted code and changed names respectively).
I hav...
I have two Django projects, and signals work fine in one, but do not work in second one (I've just copy-pasted code and changed names respectively).
I hav...
argparse - too few arguments, but it's OK: http://stackoverflow.com/questions/40709621/argparse-too-few-arguments-but-its-ok
Stackoverflow
argparse - too few arguments, but it's OK
I have the following snippet:
parser = argparse.ArgumentParser()
parser.add_argument("a") # always required
parser.add_argument("x") # required only if -t
parser.add_argument("y") # required only ...
parser = argparse.ArgumentParser()
parser.add_argument("a") # always required
parser.add_argument("x") # required only if -t
parser.add_argument("y") # required only ...
How do i make this script update the plot?: https://www.reddit.com/r/Python/comments/5f5402/how_do_i_make_this_script_update_the_plot/
reddit
How do i make this script update the plot? • /r/Python
I am trying to monitor how my system is traing by plotting nessesary parameter on a plot. But i seem to have some problem with updating the plot...
Learning Python - have the books like 'Automate the boring stuff...'. Come from OOP/Java/C# background. What else do I need?: https://www.reddit.com/r/Python/comments/5f542h/learning_python_have_the_books_like_automate_the/
reddit
Learning Python - have the books like 'Automate the... • /r/Python
Hey all! Topic says it all really :) 2 years Java Dev (not that it shows...), and CS student. Want to learn Python because of how in demand it...
SQLAlchemy OperationalError due to Query-invoked autoflush: http://stackoverflow.com/questions/40699582/sqlalchemy-operationalerror-due-to-query-invoked-autoflush
Stackoverflow
SQLAlchemy OperationalError due to Query-invoked autoflush
I have a table in a database where I add a record to it using Flask-SQLAlchemy like so:
...
content = request.form['content]
date = datetime.today()
post = Post(date, content)
db.session.add(post)...
...
content = request.form['content]
date = datetime.today()
post = Post(date, content)
db.session.add(post)...
Zbar Python Library : Control camera resolution: http://stackoverflow.com/questions/40693651/zbar-python-library-control-camera-resolution
Stackoverflow
Zbar Python Library : Control camera resolution
I am using zbar python library on Raspberry Pi3 for scanning QR code.
I have USB camera mounted on /dev/video0.
I want to control camera resolution.
(Reduce resolution to improve performance)
I ...
I have USB camera mounted on /dev/video0.
I want to control camera resolution.
(Reduce resolution to improve performance)
I ...
If i change something in my notepad ,and try to run the program in cmd,it won't change.: https://www.reddit.com/r/Python/comments/5f5fjm/if_i_change_something_in_my_notepadand_try_to_run/
reddit
If i change something in my notepad++,and try to run... • /r/Python
For example: I type print("Hello World") myName=input("What is your name?") It'l only say Hello World,but it wont input What is your name? Any...