Starting a business with Python Experience: https://www.reddit.com/r/Python/comments/7r1n11/starting_a_business_with_python_experience/
reddit
Starting a business with Python Experience • r/Python
Any of you have your own business that came out of your skills with Python? What do you do? Is it mostly website design, desktop software...
[Python for Microcontrollers] Zerynth r2.0.11 released with support for Pycom and Adafruit boards: https://www.reddit.com/r/Python/comments/7r1q83/python_for_microcontrollers_zerynth_r2011/
reddit
[Python for Microcontrollers] Zerynth r2.0.11 released... • r/Python
3 points and 0 comments so far on reddit
Key: value store in Python for possibly 100 GB of data, without client/server: https://stackoverflow.com/questions/47233562/key-value-store-in-python-for-possibly-100-gb-of-data-without-client-server
Stack Overflow
Key: value store in Python for possibly 100 GB of data, without client/server
There are many solutions to serialize a small dictionary: json.loads/json.dumps, pickle, shelve, ujson, or even by using sqlite.
But when dealing with possibly 100 GB of data, it's not possible an...
But when dealing with possibly 100 GB of data, it's not possible an...
Mixture Model Trading (Part 2 - Gaussian Mixtures): https://www.reddit.com/r/Python/comments/7r2hkm/mixture_model_trading_part_2_gaussian_mixtures/
reddit
Mixture Model Trading (Part 2 - Gaussian Mixtures) • r/Python
0 points and 0 comments so far on reddit
Python: Can (a == 1 and a == 2 and a == 3) ever evaluate to true?: https://www.reddit.com/r/Python/comments/7r2sxy/python_can_a_1_and_a_2_and_a_3_ever_evaluate_to/
reddit
Python: Can (a == 1 and a == 2 and a == 3) ever... • r/Python
1 points and 5 comments so far on reddit
Reasons I should move to python 3 vs 2.7?: https://www.reddit.com/r/Python/comments/7r36bj/reasons_i_should_move_to_python_3_vs_27/
reddit
Reasons I should move to python 3 vs 2.7? • r/Python
As the title says, why? Should I continue existing projects in 2.7 and then start new ones in 3? Should I just abandon 2.7 totally? I’m a little...
New and Improved Flask Mega-Tutorial Part VII: Error Handling: https://www.reddit.com/r/Python/comments/7r3702/new_and_improved_flask_megatutorial_part_vii/
reddit
New and Improved Flask Mega-Tutorial Part VII: Error... • r/Python
1 points and 0 comments so far on reddit
Sampling Without Replacement Probabilities: https://stackoverflow.com/questions/48222204/sampling-without-replacement-probabilities
Stackoverflow
Sampling Without Replacement Probabilities
I am using np.random.choice to do sampling without replacement.
I would like the following code to choose 0 50% of the time, 1 30% of the time, and 2 20% of the time.
import numpy as np
draws = ...
I would like the following code to choose 0 50% of the time, 1 30% of the time, and 2 20% of the time.
import numpy as np
draws = ...
Recommend some Python and PostgreSQL resources or courses?: https://www.reddit.com/r/Python/comments/7r4go5/recommend_some_python_and_postgresql_resources_or/
reddit
Recommend some Python and PostgreSQL resources or courses? • r/Python
I need to combine Python with PostgreSQL database.
[Question] Changing the decorator method at runtime?: https://www.reddit.com/r/Python/comments/7r4oka/question_changing_the_decorator_method_at_runtime/
reddit
[Question] Changing the decorator method at runtime? • r/Python
A game I develop mods for uses python. I don't have the freedom of modifying the source files, and have to rely on injection/wrapping. Now I'm...
search keywords efficiently when keywords are multi words: https://stackoverflow.com/questions/48258692/search-keywords-efficiently-when-keywords-are-multi-words
Stack Overflow
search keywords efficiently when keywords are multi words
I needs to match a really large list of keywords (>1000000) in a string efficiently using python. I found some really good libraries which try to do this fast:
1) FlashText (https://github.com/vi3...
1) FlashText (https://github.com/vi3...
Cross platform notifications: https://www.reddit.com/r/Python/comments/7r5eai/cross_platform_notifications/
reddit
Cross platform notifications • r/Python
Any recommendations on building a notification handler for a python app. It requires a new MFA entry, so a notification fifteen minutes before...
Real-time data visualization software with Python integration?: https://www.reddit.com/r/Python/comments/7r5exh/realtime_data_visualization_software_with_python/
reddit
Real-time data visualization software with Python... • r/Python
Not sure if this is the right place for this, but I had a question I was hoping someone could help with. Does there exist any software that...
Using ROIPooling layer with a pretrained ResNet34 model in MxNet-Gluon: https://stackoverflow.com/questions/48272913/using-roipooling-layer-with-a-pretrained-resnet34-model-in-mxnet-gluon
Stackoverflow
Using ROIPooling layer with a pretrained ResNet34 model in MxNet-Gluon
Assume I have a Resnet34 pretained model in mxnet and I want to the premade ROIPooling Layer included in the API:
https://mxnet.incubator.apache.org/api/python/symbol.html#mxnet.symbol.ROIPooling...
https://mxnet.incubator.apache.org/api/python/symbol.html#mxnet.symbol.ROIPooling...
[help] Two command-line questions. How do I get a list of model names? How do I match a user-inputted string with a model name?: https://www.reddit.com/r/Python/comments/7r63vs/help_two_commandline_questions_how_do_i_get_a/
reddit
[help] Two command-line questions. How do I get a list... • r/Python
0 points and 0 comments so far on reddit
Is there anyway I can package numPY into my project without having the users install it?: https://www.reddit.com/r/Python/comments/7r66av/is_there_anyway_i_can_package_numpy_into_my/
reddit
Is there anyway I can package numPY into my project... • r/Python
Hi all, I'm distributing a python application that requires numpy, however some of the computers do not have it installed and also they have...
I just wrote my first segment of elegant code!: https://www.reddit.com/r/Python/comments/7r6ouw/i_just_wrote_my_first_segment_of_elegant_code/
reddit
I just wrote my first segment of elegant code! • r/Python
Im currently reading "Think Python", and this problem comes from the chapter 6 exercises. I have previous experience as a web dev, but this is the...
Visualize your most-played artists, tracks, and genres on Google Music in this online Jupyter notebook. Just 20 lines of code (:: https://www.reddit.com/r/Python/comments/7r6e6w/visualize_your_mostplayed_artists_tracks_and/
reddit
Visualize your most-played artists, tracks, and genres... • r/Python
126 points and 7 comments so far on reddit
[Help] Apostrophes treated as quotations when parsing terms: https://www.reddit.com/r/Python/comments/7r6igd/help_apostrophes_treated_as_quotations_when/
reddit
[Help] Apostrophes treated as quotations when parsing terms • r/Python
This app was made for me a couple years ago. Spent about 6 hours trying to find the answer on my own, as I get the feeling it's straightforward,...