Python one-liners: Awk-like one-liners for python [X-post from proggit]: https://www.reddit.com/r/Python/comments/61nbhd/python_oneliners_awklike_oneliners_for_python/
reddit
Python one-liners: Awk-like one-liners for python... • r/Python
4 points and 0 comments so far on reddit
PRAW Project. Maybe others are interested in working on this?: https://www.reddit.com/r/Python/comments/61nch1/praw_project_maybe_others_are_interested_in/
reddit
PRAW Project. Maybe others are interested in working on... • r/Python
As many of you know, the Reddit mod tools are sorely lacking. Because of this, I decided to create a site that automates common tasks. Here are...
Does anyone know how to make the zombie interpreter work?: https://www.reddit.com/r/Python/comments/61npo3/does_anyone_know_how_to_make_the_zombie/
reddit
Does anyone know how to make the zombie interpreter work? • r/Python
1 points and 4 comments so far on reddit
Good learning Websites for beginners: https://www.reddit.com/r/Python/comments/61o1t0/good_learning_websites_for_beginners/
reddit
Good learning Websites for beginners • r/Python
I've just started learning python (I only learned some JavaScript in school) and I would like to have some introduction to the basics. Can anyone...
How to display stock_img() using Basemap?: https://www.reddit.com/r/Python/comments/61o357/how_to_display_stock_img_using_basemap/
reddit
How to display stock_img() using Basemap? • r/Python
According to Cartopy docs, stock_img() has only one (and default) option, a downsampled version of the Natural Earth shaded relief raster. How do...
Global variable for only one function?: https://www.reddit.com/r/Python/comments/61pyu9/global_variable_for_only_one_function/
reddit
Global variable for only one function? • r/Python
I'm trying to make a function that has some sort of memory. For example, let's say I'm making a function called next() that first returns 1 and...
How can I speed up reading multiple files and putting the data into a dataframe?: http://stackoverflow.com/questions/42157944/how-can-i-speed-up-reading-multiple-files-and-putting-the-data-into-a-dataframe
Stack Overflow
How can I speed up reading multiple files and putting the data into a dataframe?
I have a number of text files, say 50, that I need to read into a massive dataframe. At the moment, I am using the following steps.
Read every file and check what the labels are. The information I...
Read every file and check what the labels are. The information I...
Digital Identity, Privacy, and Security with Brian Warner (Interview): https://www.reddit.com/r/Python/comments/61rcl3/digital_identity_privacy_and_security_with_brian/
reddit
Digital Identity, Privacy, and Security with Brian... • r/Python
1 points and 0 comments so far on reddit
Python 3.6 adds New secrets Module for Robust Account and Password Security: https://www.reddit.com/r/Python/comments/61rb91/python_36_adds_new_secrets_module_for_robust/
reddit
Python 3.6 adds New secrets Module for Robust Account... • r/Python
20 points and 6 comments so far on reddit
API in Django but based on protobuf: http://stackoverflow.com/questions/30278815/api-in-django-but-based-on-protobuf
Stackoverflow
API in Django but based on protobuf
I need to create an API in Django but unfortunately communication must be based on protobuf.
What worries me most are quite complicated data models. If I'm not mistaken definitions in models.py mu...
What worries me most are quite complicated data models. If I'm not mistaken definitions in models.py mu...
python ggplot geom_bar y axis incorrect values: http://stackoverflow.com/questions/42890415/python-ggplot-geom-bar-y-axis-incorrect-values
Stackoverflow
python ggplot geom_bar y axis incorrect values
df:
duration status line
75526 Good A
75526 Muy buen B
75546 pas mal C
75516 loco D
I am plotting via:
p = ggplot(aes(x='status',weight='duration',fill='line'),data=d...
duration status line
75526 Good A
75526 Muy buen B
75546 pas mal C
75516 loco D
I am plotting via:
p = ggplot(aes(x='status',weight='duration',fill='line'),data=d...
Getting commit history of a Git repo without having the repo locally cloned: https://www.reddit.com/r/Python/comments/61rsm4/getting_commit_history_of_a_git_repo_without/
reddit
Getting commit history of a Git repo without having the... • r/Python
Hello, I'm looking for a way to get a commit history from a specific branch from a Git repository. Right now I use subprocesses to checkout the...
Get RPN tree size: http://stackoverflow.com/questions/42983364/get-rpn-tree-size
Stackoverflow
Get RPN tree size
I've implemented the following 'tree sizer' but it fails under certain conditions, the example bellow returns size 2 when it should return size 4, can anyone help me out. I've writen this several t...