Django REST framework 3.4 Released [x-post from /r/django]: https://www.reddit.com/r/Python/comments/4stflf/django_rest_framework_34_released_xpost_from/
reddit
Django REST framework 3.4 Released [x-post from /r/django] • /r/Python
4 points and 1 comments so far on reddit
Python Weekly - Issue 252: http://us2.campaign-archive.com/?u=e2e180baf855ac797ef407fc7
The Gordon and Betty Moore Foundation Grant for Numba and Dask: https://www.reddit.com/r/Python/comments/4stpr5/the_gordon_and_betty_moore_foundation_grant_for/
reddit
The Gordon and Betty Moore Foundation Grant for Numba... • /r/Python
2 points and 1 comments so far on reddit
Python Integration: Alternative to FactSet (Help): https://www.reddit.com/r/Python/comments/4sty6v/python_integration_alternative_to_factset_help/
reddit
Python Integration: Alternative to FactSet (Help) • /r/Python
Hi everyone. This may not be the right place to post this, but I'm looking into using the Python API in FactSet for: * Historical financial...
PyTanks - my attempt to create exercises for learning Python: https://www.reddit.com/r/Python/comments/4stv7i/pytanks_my_attempt_to_create_exercises_for/
reddit
PyTanks - my attempt to create exercises for learning... • /r/Python
Here it is in its very early version: *[http://pytanks.org](http://pytanks.org)* It is intended either for people not acquainted with Python or...
Should 'self' be highlighted in python syntax highlighting?: https://www.reddit.com/r/Python/comments/4sttn8/should_self_be_highlighted_in_python_syntax/
reddit
Should 'self' be highlighted in python syntax... • /r/Python
I use vim, and the bundled python.vim syntax file does not highlight *self*. I looked around, and it turns out that there isn't any standard on...
Why does this not give me 2 errors?: https://www.reddit.com/r/Python/comments/4su0sb/why_does_this_not_give_me_2_errors/
reddit
Why does this not give me 2 errors? • /r/Python
http://prntscr.com/bsvotv I don't understand why it does print "Error" and that it doesn't print "Don't divide by 0" Please someone explain this...
How to deal with mailchimp API in Python for email confirmation?: https://www.reddit.com/r/Python/comments/4su0s6/how_to_deal_with_mailchimp_api_in_python_for/
reddit
How to deal with mailchimp API in Python for email... • /r/Python
Hello everyone! I'm doing a project in Flask related with a referral page like the one mentioned on Tim Ferris blog done in RoR. Right...
Python testing mock module help: https://www.reddit.com/r/Python/comments/4su6bz/python_testing_mock_module_help/
reddit
Python testing mock module help • /r/Python
Hey guys, I'm writing some code which automates AWS deployments. I have a function which relies on a custom developed ASG class. The custom ASG...
cv2.videocapture doesn't works on Raspberry-pi: http://stackoverflow.com/questions/38302161/cv2-videocapture-doesnt-works-on-raspberry-pi
Stack Overflow
cv2.videocapture doesn't works on Raspberry-pi
How can i make the cv2.VideoCapture(0) recognize the USB camera of raspberry-pi.
def OnRecord(self, evt):
capture = cv2.VideoCapture(0)
if (not capture.isOpened()):
print "Error"
#...
def OnRecord(self, evt):
capture = cv2.VideoCapture(0)
if (not capture.isOpened()):
print "Error"
#...
{{Django}} Help me find a more elegant solution: A question about models and forms.: https://www.reddit.com/r/Python/comments/4sukwl/django_help_me_find_a_more_elegant_solution_a/
reddit
{{Django}} Help me find a more elegant solution: A... • /r/Python
I'm an amateur developer and I have hit a design snag. Any advice would be appreciated. Task: The app is for processing requests for cost...
RoR developer/tester here learning Django. Is the Django built in test suite sufficient and in use in the industry?: https://www.reddit.com/r/Python/comments/4suuei/ror_developertester_here_learning_django_is_the/
reddit
RoR developer/tester here learning Django. Is the... • /r/Python
Coming from the Rails world. Rails has built in test features but they are almost unused in the "real" world. Instead, we opt for other suites...
Dynamically load/distribute core of python application into memory on a client's computer?: https://www.reddit.com/r/Python/comments/4suxsx/dynamically_loaddistribute_core_of_python/
reddit
Dynamically load/distribute core of python application... • /r/Python
I'm experimenting with different ways to control the distribution and a program I've written. I would like to run a simple client application...
Extracting value from a numpy array while iterating through a list.: https://www.reddit.com/r/Python/comments/4suzik/extracting_value_from_a_numpy_array_while/
reddit
Extracting value from a numpy array while iterating... • /r/Python
Hi, I am new to python. I am stuck retrieving the value from a numpy array, programmatically. I think it is a silly syntactical error. If anyone...
arc lint command fails with error #1: http://stackoverflow.com/questions/38331830/arc-lint-command-fails-with-error-1
Stack Overflow
arc lint command fails with error #1
I've configured arc lint to use pylint by defining linters in .arclint file:
{
"linters": {
"pylint": {
"type": "pylint",
"include": "(\\.py$)"
}
}
}
After exectuing arc lint
{
"linters": {
"pylint": {
"type": "pylint",
"include": "(\\.py$)"
}
}
}
After exectuing arc lint
Best automatic summarization library for python?: https://www.reddit.com/r/Python/comments/4svgho/best_automatic_summarization_library_for_python/
reddit
Best automatic summarization library for python? • /r/Python
I've stumbled with many diferent libraries for this topic and I'm kinda sceptic, so it's hard to chose one. Edit: typo.
Why CPython 3.5 is slower than PHP 7?: https://www.reddit.com/r/Python/comments/4svhku/why_cpython_35_is_slower_than_php_7/
reddit
Why CPython 3.5 is slower than PHP 7? • /r/Python
I've read the usual explanations for CPython being slower than V8: V8 has ton of money invested in, that means a more sophisticated VM that...