Recreate Excel Formula in Python: https://www.reddit.com/r/Python/comments/5unr8b/recreate_excel_formula_in_python/
reddit
Recreate Excel Formula in Python • r/Python
So I'm working on backtesting trading strategies using Python and I'm relatively new to the language. I could do this with loops pretty easily,...
New episode of codepodcast "Type systems" and AMA with episode's guests: https://www.reddit.com/r/Python/comments/5unws0/new_episode_of_codepodcast_type_systems_and_ama/
reddit
New episode of codepodcast "Type systems" and AMA with... • r/Python
1 points and 1 comments so far on reddit
ipyvolume: 3D plotting library for the Jupyter/IPython notebook: https://www.reddit.com/r/Python/comments/5unqft/ipyvolume_3d_plotting_library_for_the/
reddit
ipyvolume: 3D plotting library for the Jupyter/IPython... • r/Python
1 points and 0 comments so far on reddit
What are your medium to large scale programming projects?: https://www.reddit.com/r/Python/comments/5unndk/what_are_your_medium_to_large_scale_programming/
reddit
What are your medium to large scale programming projects? • r/Python
I feel like I'm kind of in a programming slump. I've been growing quite fond of Python and have made some moderately complex programs, but not a...
Django find relationship "route" between two Vertexes in a Network: http://stackoverflow.com/questions/42233718/django-find-relationship-route-between-two-vertexes-in-a-network
Stackoverflow
Django find relationship "route" between two Vertexes in a Network
This is mostly a logical question, but the context is done in Django.
In our Database we have Vertex and Line Classes, these form a (neural)network, but it is unordered and I can't change it, it's a
In our Database we have Vertex and Line Classes, these form a (neural)network, but it is unordered and I can't change it, it's a
I need help in figuring out how to get the current tab url.(without selenium): https://www.reddit.com/r/Python/comments/5uoa7x/i_need_help_in_figuring_out_how_to_get_the/
reddit
I need help in figuring out how to get the current tab... • r/Python
I've been trying to find ways to do it for the past 3 days and nothing works.
My perspective on the recent language changes to Python: http://charlesleifer.com/blog/what-happened/
Any coders here who would like to break into the Blockchain space?: https://www.reddit.com/r/Python/comments/5uoj5f/any_coders_here_who_would_like_to_break_into_the/
reddit
Any coders here who would like to break into the... • r/Python
Join our monthly hands-on Blockchain developer focused workshop in London on https://www.meetup.com/Blockchain-Workshop-for-Developers/
how is spacy-io using multi threading without GIL?: http://stackoverflow.com/questions/37047872/how-is-spacy-io-using-multi-threading-without-gil
Stackoverflow
how is spacy-io using multi threading without GIL?
Referring this post Multi-Threaded NLP with Spacy pipe which talks about that,
and here
from https://spacy.io/
from spacy.attrs import *
# All strings mapped to integers, for easy export to numpy
and here
from https://spacy.io/
from spacy.attrs import *
# All strings mapped to integers, for easy export to numpy
Python SysLogHandler over TCP: handling connection loss: http://stackoverflow.com/questions/40091456/python-sysloghandler-over-tcp-handling-connection-loss
Stack Overflow
Python SysLogHandler over TCP: handling connection loss
I have a process sending logs to a syslog server over TCP using logging.SyslogHandler.
Unfortunately, if the syslog server is restarted for some reason, the process stops sending logs and is unable...
Unfortunately, if the syslog server is restarted for some reason, the process stops sending logs and is unable...
Dave Beazley started working on the 5th edition of the Python Essential Reference and will use Python 3.6 as a starting point: https://www.reddit.com/r/Python/comments/5uowp5/dave_beazley_started_working_on_the_5th_edition/
reddit
Dave Beazley started working on the 5th edition of the... • r/Python
0 points and 0 comments so far on reddit
Replace IPython menu icon: http://stackoverflow.com/questions/39966228/replace-ipython-menu-icon
Stackoverflow
Replace IPython menu icon
I'm using Anaconda Python 2.7 and Gooey (wxPython wrapper) to create a simple, interactive GUI in Windows 7. When I run my code, the GUI pops up and the IPython icon is shown on the menu bar.
I'd ...
I'd ...
[fuzzy string matching] best approach for partial numbers ?: https://www.reddit.com/r/Python/comments/5up4l4/fuzzy_string_matching_best_approach_for_partial/
reddit
[fuzzy string matching] best approach for partial numbers ? • r/Python
Hi everyone, So I have some million partial numbers coming from an ICR system. They come from personal documents, and are composed by a PersonID...
avoiding 'charmap' codec over bunch of files.: https://www.reddit.com/r/Python/comments/5upi6r/avoiding_charmap_codec_over_bunch_of_files/
reddit
avoiding 'charmap' codec over bunch of files. • r/Python
Let's say I'm performing some action over many files, and maybe 1 percent of them have a file that has this error: UnicodeDecodeError: 'charmap'...
SeekWell, SQL for Data Analysts, new library I built: https://www.reddit.com/r/Python/comments/5ups2s/seekwell_sql_for_data_analysts_new_library_i_built/
reddit
SeekWell, SQL for Data Analysts, new library I built • r/Python
Hi there! I spent a weekend a bit ago working on a new library to help me query SQL databases in Python. Specifically I wrote it with features...
How to Make an Image Classifier - Intro to Deep Learning: https://www.reddit.com/r/Python/comments/5uprxz/how_to_make_an_image_classifier_intro_to_deep/
reddit
How to Make an Image Classifier - Intro to Deep Learning • r/Python
2 points and 0 comments so far on reddit
Python functions, and single exit points: https://www.reddit.com/r/Python/comments/5uq11u/python_functions_and_single_exit_points/
reddit
Python functions, and single exit points • r/Python
Hello. So I'm having a bit of a conundrum: I can't decide if it's easier to just have a single exit point in functions like so: [code] ...