I made a Letterboxd API-thing: https://www.reddit.com/r/Python/comments/4c8i3a/i_made_a_letterboxd_apithing/
reddit
I made a Letterboxd API-thing • /r/Python
So seeing Letterboxd doesn't have an API, I set out to make my own with Python 2.7 and urllib2. I use the Letterboxd user rating data in my movie...
Makefile for Python dependencies?: https://www.reddit.com/r/Python/comments/4c8j8e/makefile_for_python_dependencies/
reddit
Makefile for Python dependencies? • /r/Python
I am using Python scripts to preprocess data and deliver in it it's final form. I would like to create a 'Makefile' for the data, so it would be...
Python Scipy Image Array Is Inaccurate when downscaled: http://stackoverflow.com/questions/36232060/python-scipy-image-array-is-inaccurate-when-downscaled
Stackoverflow
Python Scipy Image Array Is Inaccurate when downscaled
We have a fairly complex image processing script written in Python which is using PIL and numpy. For one of the steps, we have a very sensitive multi channel gradients which is a lookup table. Once...
Does anyone use core library of SQLAlchemy alone without the ORM? and what is the merit of using an ORM?: https://www.reddit.com/r/Python/comments/4c9fsm/does_anyone_use_core_library_of_sqlalchemy_alone/
reddit
Does anyone use core library of SQLAlchemy alone... • /r/Python
Table creation and CURD ops are simple enough in core SQLAlchemy, rolling out your own wrapper object is trivial and it performs bulk operation...
Python tests on virtual Mac OS X with Vagrant and py.test: https://www.reddit.com/r/Python/comments/4c9m6k/python_tests_on_virtual_mac_os_x_with_vagrant_and/
reddit
Python tests on virtual Mac OS X with Vagrant and py.test • /r/Python
2 points and 1 comments so far on reddit
Anyone know of a tool to generate Python3 UML taking advantage of type hinting?: https://www.reddit.com/r/Python/comments/4ca5cr/anyone_know_of_a_tool_to_generate_python3_uml/
reddit
Anyone know of a tool to generate Python3 UML taking... • /r/Python
I use a couple of placeholder properties in my quasi-abstract classes, setting them to None and marking a Pycharm type hint (# type: MyClass) for...
Python Virtual Environments – a primer: https://realpython.com/blog/python/python-virtual-environments-a-primer#.Vvk_XbD-AWw.hackernews
Realpython
Python Virtual Environments: A Primer – Real Python
In this tutorial, you'll learn how to use a Python virtual environment to manage your Python projects. You'll also dive deep into the structure of virtual environments built using the venv module, as well as the reasoning behind using virtual environments.
Your go-to alternative to python: https://www.reddit.com/r/Python/comments/4cae23/your_goto_alternative_to_python/
reddit
Your go-to alternative to python • /r/Python
First off I *_love_* python, *_and_* the community! You all rock! I recently asked around in /r/learnprogramming (not quite as friendly) and...
When People Sleep: Determine Facebook Activity Using Google Chrome, Javascript and Python: https://www.reddit.com/r/Python/comments/4cak91/when_people_sleep_determine_facebook_activity/
reddit
When People Sleep: Determine Facebook Activity Using... • /r/Python
2 points and 0 comments so far on reddit
Persisting pandas dataframes: any good methods besides CSV?: https://www.reddit.com/r/Python/comments/4caosz/persisting_pandas_dataframes_any_good_methods/
reddit
Persisting pandas dataframes: any good methods besides... • /r/Python
Technical users in our firm need the ability to share pandas dataframes among themselves. They currently do so in CSV but it's proven sub-optimal...
Visualize missing data with the missingno package: https://www.reddit.com/r/Python/comments/4caijh/visualize_missing_data_with_the_missingno_package/
reddit
Visualize missing data with the missingno package • /r/Python
2 points and 1 comments so far on reddit
What do eps and tol do in LassoCV: http://stackoverflow.com/questions/36187281/what-do-eps-and-tol-do-in-lassocv
Stackoverflow
What do eps and tol do in LassoCV
Using scikit-learn: http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LassoCV.html
Specifically, I am interested in:
1) If eps grows, does the accuracy(precision) increase or
Specifically, I am interested in:
1) If eps grows, does the accuracy(precision) increase or
In a class hierarchy, where do I place common validation logic?: https://www.reddit.com/r/Python/comments/4cbsbx/in_a_class_hierarchy_where_do_i_place_common/
reddit
In a class hierarchy, where do I place common... • /r/Python
**Problem**: i have a common validation that occurs in `__delitem__`, `__getitem__`, `__setitem__` that I am moving to its own method. I then plan...