Python Software Foundation Fellow Members for Q4 2017: https://www.reddit.com/r/Python/comments/7mx1h3/python_software_foundation_fellow_members_for_q4/
reddit
Python Software Foundation Fellow Members for Q4 2017 • r/Python
1 points and 0 comments so far on reddit
Interupting a perl-prove job running as a sudo-background-process launched from a Python script without loosing its output: https://stackoverflow.com/questions/47983165/interupting-a-perl-prove-job-running-as-a-sudo-background-process-launched-from
Stackoverflow
Interupting a perl-prove job running as a sudo-background-process launched from a Python script without loosing its output
As part of a test suite written in Python 3[.4-.6] on Linux, I have to run a number 3rd-party tests. The 3rd-party tests are bash scripts. They are designed to run with Perl's prove TAP harness. On...
Is there a print function that does implicit type conversion?: https://www.reddit.com/r/Python/comments/7mxf4u/is_there_a_print_function_that_does_implicit_type/
reddit
Is there a print function that does implicit type... • r/Python
Coming from a Java background, I like to do stuff like print("The current value of x is " + x) Python, of course, won't let me do this...
Pandas/Jupyter Notebook: Economic Analysis of Bitcoin (as of late 2016) and Correlation to Chinese Yuan: https://www.reddit.com/r/Python/comments/7myg18/pandasjupyter_notebook_economic_analysis_of/
reddit
Pandas/Jupyter Notebook: Economic Analysis of Bitcoin... • r/Python
1 points and 1 comments so far on reddit
Experienced programmer, Python newbie seeking help! Scan for color / pixel -> Scan each minute -> Click if found!: https://www.reddit.com/r/Python/comments/7mymtf/experienced_programmer_python_newbie_seeking_help/
reddit
Experienced programmer, Python newbie seeking help!... • r/Python
Greetings, everyone! I'm attempting to write a script that'll scan a browser for a specific color or pixel each minute and click it if it's...
Newbie here! I want to learn python and my first goal is to write a Zork-like rpg game!: https://www.reddit.com/r/Python/comments/7myhpc/newbie_here_i_want_to_learn_python_and_my_first/
reddit
Newbie here! I want to learn python and my first goal... • r/Python
I just took codeacademys introduction to Python and I really enjoyed it. I learned how to set a variable. Calculate variables and change variables...
What python graphics package should I use to create something like this?: https://www.reddit.com/r/Python/comments/7mz6um/what_python_graphics_package_should_i_use_to/
reddit
What python graphics package should I use to create... • r/Python
1 points and 2 comments so far on reddit
Program not operating in the correct order...: https://www.reddit.com/r/Python/comments/7mzc7g/program_not_operating_in_the_correct_order/
reddit
Program not operating in the correct order... • r/Python
I have defined a function at the top entitled "draw_ball", it draws a magic eight ball with turtle graphics. Here is the rest of the code, it...
Can't launch Tor browser with Selenium (Python): https://stackoverflow.com/questions/45253255/cant-launch-tor-browser-with-selenium-python
Stackoverflow
Can't launch Tor browser with Selenium (Python)
Using Windows 10, I have downloaded Tor Browser 7.0.2 to C:\Users\USER\Desktop\Tor Browser.
I try to run the following .pyscript in Python 3.6.2, which was suggested here. My Selenium version is 3...
I try to run the following .pyscript in Python 3.6.2, which was suggested here. My Selenium version is 3...
How to bind Ctrl-a to Home in Jupyter Notebook?: https://www.reddit.com/r/Python/comments/7mzq1x/how_to_bind_ctrla_to_home_in_jupyter_notebook/
reddit
How to bind Ctrl-a to Home in Jupyter Notebook? • r/Python
I think it's possible to make Ctrl-a in Jupyter to move to the beginning of the line like Home button did. I've tried to look at this...
Get live news on your desktop: https://www.reddit.com/r/Python/comments/7n0zvu/get_live_news_on_your_desktop/
reddit
Get live news on your desktop • r/Python
Finally finished a Linux app indicator that retrieves and displays live news on your desktop and thinking of publishing it to pypi. I built it...
Loading .csv file using Pandas: https://www.reddit.com/r/Python/comments/7n11q0/loading_csv_file_using_pandas/
reddit
Loading .csv file using Pandas • r/Python
I'm sorry for the basic question, but every time I try to load a .csv file into python, I get an error message that the file doesn't exist. I'm on...
What is the correct way to share package version with setup.py and the package?: https://stackoverflow.com/questions/17583443/what-is-the-correct-way-to-share-package-version-with-setup-py-and-the-package
Stack Overflow
What is the correct way to share package version with setup.py and the package?
With distutils, setuptools, etc. a package version is specified in setup.py:
# file: setup.py
...
setup(
name='foobar',
version='1.0.0',
# other attributes
)
I would like to be able to access the ...
# file: setup.py
...
setup(
name='foobar',
version='1.0.0',
# other attributes
)
I would like to be able to access the ...