Python client for QuadrigaCX, a Canadian exchange for Bitcoin and Ethereum: https://www.reddit.com/r/Python/comments/67bbyl/python_client_for_quadrigacx_a_canadian_exchange/
reddit
Python client for QuadrigaCX, a Canadian exchange for... • r/Python
2 points and 0 comments so far on reddit
What Python related RSS feeds do you follow?: https://www.reddit.com/r/Python/comments/67b9nx/what_python_related_rss_feeds_do_you_follow/
reddit
What Python related RSS feeds do you follow? • r/Python
I started using Feedly and I am looking for interesting python related sites/blogs to follow. Any suggestions ?
python - stumped by pandas conditionals and/or boolean indexing: http://stackoverflow.com/questions/43509953/python-stumped-by-pandas-conditionals-and-or-boolean-indexing
Stackoverflow
python - stumped by pandas conditionals and/or boolean indexing
I am having trouble with conditionals / boolean indexing. I am trying to populate a dataframe (dfp) with logic which is conditional on data from a similarly shaped dataframe (dfs) plus the previous...
Has you successfully started a consulting business based off of an open source package you released? What is your story?: https://www.reddit.com/r/Python/comments/67br6a/has_you_successfully_started_a_consulting/
reddit
Has you successfully started a consulting business... • r/Python
0 points and 0 comments so far on reddit
Texting robots on Mars using Python, Flask, NASA APIs and Twilio: https://www.reddit.com/r/Python/comments/67bo7d/texting_robots_on_mars_using_python_flask_nasa/
reddit
Texting robots on Mars using Python, Flask, NASA APIs... • r/Python
1 points and 0 comments so far on reddit
Pi Camera image save with date time: https://www.reddit.com/r/Python/comments/67bsrv/pi_camera_image_save_with_date_time/
reddit
Pi Camera image save with date time • r/Python
Evening all.... I appreciate that this may be a simple question but using python, how would you get a file to be saved with the date time that it...
Minimal examples of data structures and algorithms in Python: https://github.com/keon/algorithms
GitHub
GitHub - keon/algorithms: Minimal examples of data structures and algorithms in Python
Minimal examples of data structures and algorithms in Python - keon/algorithms
need some assistance with python: https://www.reddit.com/r/Python/comments/67c32p/need_some_assistance_with_python/
reddit
need some assistance with python • r/Python
Hi there, I don't want to do mundane tasks on code academy. I'm the kinda of person where if I stare at something long enough, I will just...
I'm wondering where to find python coding examples for lego robots?: https://www.reddit.com/r/Python/comments/67c3bu/im_wondering_where_to_find_python_coding_examples/
reddit
I'm wondering where to find python coding examples for... • r/Python
I'm building a lego robot/car that is supposed to drive around with an ultrasonic sensor and avoid objects by detecting them, but I'm not sure how...
Python: invalid syntax massage in cmd every time I want to download a package as in the picture attached.: https://www.reddit.com/r/Python/comments/67cmyq/python_invalid_syntax_massage_in_cmd_every_time_i/
reddit
Python: invalid syntax massage in cmd every time I want... • r/Python
2 points and 1 comments so far on reddit
Does pycharm have a run feature?: https://www.reddit.com/r/Python/comments/67czxu/does_pycharm_have_a_run_feature/
reddit
Does pycharm have a run feature? • r/Python
Title.
Aloha, I have a mac and I am using SSH to connect to a raspberry pi. From my mac I trigger a python script on the pi to run. This script outputs a csv file (out.csv). How do I save that file to my mac?: https://www.reddit.com/r/Python/comments/67dqt4/aloha_i_have_a_mac_and_i_am_using_ssh_to_connect/
reddit
Aloha, I have a mac and I am using SSH to connect to a... • r/Python
Better yet the script has a for loop and at the end the script saves all the concatenated data as "out.csv", ideally I would like the to grab each...
replace double quotes works on few strings and doesn't work on few: https://www.reddit.com/r/Python/comments/67e0yy/replace_double_quotes_works_on_few_strings_and/
reddit
replace double quotes works on few strings and doesn't... • r/Python
This case is bugging me, I have two texts, replace double quotes works on text but not on text_2 string. How to replace double and single quotes...
The most adequate Python IDE for Scientific Computing and Data Science - if there's such a thing!: https://www.reddit.com/r/Python/comments/67eanw/the_most_adequate_python_ide_for_scientific/
reddit
The most adequate Python IDE for Scientific Computing... • r/Python
Hello, all Recently I have decided to get on with it and learn Python. I work in energy optimization and scenario generation, and most of the...
Is there a faster way to append a list that doesnt exist?: https://www.reddit.com/r/Python/comments/67epj5/is_there_a_faster_way_to_append_a_list_that/
reddit
Is there a faster way to append a list that doesnt exist? • r/Python
currently this is my code: https://pastebin.com/9hn6U50h I feel like it could be more fluid, but I'm not sure how to wrap my brain around it.
Python Enum shows weird behavior when using same dictionary for member values: http://stackoverflow.com/questions/43522874/python-enum-shows-weird-behavior-when-using-same-dictionary-for-member-values
Stackoverflow
Python Enum shows weird behavior when using same dictionary for member values
I don't understand why this Enum doesn't have all the members I defined, when I assign a dict as each member's value:
from enum import Enum
class Token(Enum):
facebook = {
'access_period'...
from enum import Enum
class Token(Enum):
facebook = {
'access_period'...
how can i "do for x in y but not if x is in z"?: https://www.reddit.com/r/Python/comments/67exa6/how_can_i_do_for_x_in_y_but_not_if_x_is_in_z/
reddit
how can i "do for x in y but not if x is in z"? • r/Python
I don't know if i said this right, but I am writing a quick and dirty static html file with python and I was wondering how i could take a listA...