What's your package development workflow?: https://www.reddit.com/r/Python/comments/77cxos/whats_your_package_development_workflow/
reddit
What's your package development workflow? • r/Python
I'm specifically interested in how you deal with the need to reload code after changes. I usually have an IPython REPL open where I play around...
How to install regular python (via homebrew) and miniconda in the same computer?: https://stackoverflow.com/questions/46555331/how-to-install-regular-python-via-homebrew-and-miniconda-in-the-same-computer
Stackoverflow
How to install regular python (via homebrew) and miniconda in the same computer?
I downloaded conda, however I would like to use pip and a regular python version (homebrew) for a different purpose, is it ok if I install python and pip via brew and then I install conda?
Update
...
Update
...
Decent library for OpenPGP, preferably cross-platform: https://www.reddit.com/r/Python/comments/77d5hc/decent_library_for_openpgp_preferably/
reddit
Decent library for OpenPGP, preferably cross-platform • r/Python
I've found a few libraries, however there's always something wrong with each of them: abandoned or not full implemented or something else. Some...
Need help with a simple python assignment: https://www.reddit.com/r/Python/comments/77dlhx/need_help_with_a_simple_python_assignment/
reddit
Need help with a simple python assignment • r/Python
Brand new to python, and computer science. I'm really struggling solving these two assignments. I would really appreciate some help. 1. Write a...
Get live news in a commandline from newsources like bbc etc.: https://www.reddit.com/r/Python/comments/77e0dh/get_live_news_in_a_commandline_from_newsources/
reddit
Get live news in a commandline from newsources like bbc... • r/Python
2 points and 0 comments so far on reddit
Anyone else having trouble importing modules in sublime text?: https://www.reddit.com/r/Python/comments/77e5qo/anyone_else_having_trouble_importing_modules_in/
reddit
Anyone else having trouble importing modules in sublime... • r/Python
I have been able to import modules through sublime for the last couple of months. However, today when I tried to do so I was unable to and get the...
10 common beginner mistakes in Python - CheckIO: https://www.reddit.com/r/Python/comments/77dze8/10_common_beginner_mistakes_in_python_checkio/
reddit
10 common beginner mistakes in Python - CheckIO • r/Python
3 points and 0 comments so far on reddit
Dictionary becomes BaseList in MongoEngine after assignement: https://stackoverflow.com/questions/30580436/dictionary-becomes-baselist-in-mongoengine-after-assignement
Stackoverflow
Dictionary becomes BaseList in MongoEngine after assignement
I'm using mongoengine 0.9.0
class EntityChange(Document):
...
old_data = DictField()
new_data = DictField()
I want to save dict objects into old_data and new_data.
Why are fields bec...
class EntityChange(Document):
...
old_data = DictField()
new_data = DictField()
I want to save dict objects into old_data and new_data.
Why are fields bec...
Python Weekly - Issue 317 : http://mailchi.mp/pythonweekly/python-weekly-issue-317
How do I get the components for LDA in scikit-learn?: https://stackoverflow.com/questions/13973096/how-do-i-get-the-components-for-lda-in-scikit-learn
Stack Overflow
How do I get the components for LDA in scikit-learn?
When using PCA in sklearn, it's easy to get out the components:
from sklearn import decomposition
pca = decomposition.PCA(n_components=n_components)
pca_data = pca.fit(input_data)
pca_components =...
from sklearn import decomposition
pca = decomposition.PCA(n_components=n_components)
pca_data = pca.fit(input_data)
pca_components =...