How can i improve the speed of my code using cython?: https://www.reddit.com/r/Python/comments/4es2ql/how_can_i_improve_the_speed_of_my_code_using/
reddit
How can i improve the speed of my code using cython? • /r/Python
i am new to cython, a bit experience in python. right now i am working in an optimization problem using simulated anneling algorithm for a...
I wrote a program to plot serial data in real time [x-post from r/electronics]: https://www.reddit.com/r/Python/comments/4esreo/i_wrote_a_program_to_plot_serial_data_in_real/
reddit
I wrote a program to plot serial data in real time... • /r/Python
0 points and 1 comments so far on reddit
Any packages that will convert docstrings for functions into JSON to specify characteristics of the function (e.g. number of required arguments, etc.): https://www.reddit.com/r/Python/comments/4esy6h/any_packages_that_will_convert_docstrings_for/
reddit
Any packages that will convert docstrings for functions into JSON...
I've been tasked with creating an API documentation website using React.js as the front end. I need to take docstrings of Python functions (the...
Using Python to Implement a Fluent Interface to Any REST API: https://www.reddit.com/r/Python/comments/4et8mq/using_python_to_implement_a_fluent_interface_to/
reddit
Using Python to Implement a Fluent Interface to Any... • /r/Python
2 points and 0 comments so far on reddit
Safely processing JSON-like data structures: https://www.reddit.com/r/Python/comments/4etfcc/safely_processing_jsonlike_data_structures/
reddit
Safely processing JSON-like data structures • /r/Python
Consider the following straightforward code: data = json.load(x) # `x` is a file or an HTTP response for person in data['people']: ...
A basic introduction to NumPy's einsum (one of NumPy’s jewels that you may not be aware of): https://www.reddit.com/r/Python/comments/4ethfv/a_basic_introduction_to_numpys_einsum_one_of/
reddit
A basic introduction to NumPy's einsum (one of NumPy’s... • /r/Python
2 points and 0 comments so far on reddit
PySpark row-wise function composition: http://stackoverflow.com/questions/36584812/pyspark-row-wise-function-composition
Stack Overflow
PySpark row-wise function composition
As a simplified example, I have a dataframe "df" with columns "col1,col2" and I want to compute a row-wise maximum after applying a function to each column :
def f(x):
return (x+1)
max_udf=udf(
def f(x):
return (x+1)
max_udf=udf(
Python coding environment similar to RStudio?: https://www.reddit.com/r/Python/comments/4etxqo/python_coding_environment_similar_to_rstudio/
reddit
Python coding environment similar to RStudio? • /r/Python
I've been picking up Python, and the number one thing that I find difficult is that there doesn't seem to be a coding environment that works how I...
Converting to another web framework: Basic apps in Symfony and Django: https://www.reddit.com/r/Python/comments/4etva0/converting_to_another_web_framework_basic_apps_in/
reddit
Converting to another web framework: Basic apps in... • /r/Python
5 points and 0 comments so far on reddit
fscache.py Gist - Filesystem caches for expensive reporting calls: https://www.reddit.com/r/Python/comments/4eu4ge/fscachepy_gist_filesystem_caches_for_expensive/
Looking for a video I watched a while ago about for loops, enumerate, yield and zip: https://www.reddit.com/r/Python/comments/4eu9jz/looking_for_a_video_i_watched_a_while_ago_about/
reddit
Looking for a video I watched a while ago about for... • /r/Python
He spoke about how for i in range(len(x)) should never be used and that for i,y in enumerate(x) was always the way forward. He...
Why learning Haskell/Python makes you a worse programmer (2006): http://lukeplant.me.uk/blog/posts/why-learning-haskell-python-makes-you-a-worse-programmer/
Luke Plant's home page
Why learning Haskell/Python makes you a worse programmer
A rant about how annoying programming in C# is, really.
Why can't I import my self-created Python package?: http://stackoverflow.com/questions/36596851/why-cant-i-import-my-self-created-python-package
Stackoverflow
Why can't I import my self-created Python package?
I just created a Python package (sources here) but I'm having trouble using it after installation. A simple import gives me an ImportError.
Below I'll show exactly what I did so that you can repro...
Below I'll show exactly what I did so that you can repro...
Plotting a symbolic function with sympy: https://www.reddit.com/r/Python/comments/4ewu3k/plotting_a_symbolic_function_with_sympy/
reddit
Plotting a symbolic function with sympy • /r/Python
Hey everyone! I'm a complete newbie to python, coming over from Mathematica. I'm trying to do the following: 1) I have defined a function: def...