My friend asked me to "make me an interface that has the methods onStart() onLoop() and onStop(), where onStart() will be called by an external program when a loop starts, onStop() will be called when it stops, and onLoop() will be called every loop": https://www.reddit.com/r/Python/comments/63njvl/my_friend_asked_me_to_make_me_an_interface_that/
reddit
My friend asked me to "make me an interface that has... • r/Python
Can someone break this down for me? I've basically forgotten all OOP programing knowledge that I had, as wel as all the most of the python
Need some opinions on my first major project!: https://www.reddit.com/r/Python/comments/63nxr6/need_some_opinions_on_my_first_major_project/
reddit
Need some opinions on my first major project! • r/Python
https://github.com/IanDoarn/ryport Ryport is a postgres tool the utilizes psycopg2 to help the user run simple queries, and do simple formatting...
How to put a swig/pybind11 C project on pypi: http://stackoverflow.com/questions/42656388/how-to-put-a-swig-pybind11-c-project-on-pypi
Stackoverflow
How to put a swig/pybind11 C++ project on pypi
I have code wrapped with both pybind11 and swig, but can't seem to find docs about how to properly get that code on pypi so I can pip install my package.
Pybind11 seems to have issues that make it
Pybind11 seems to have issues that make it
PyData Barcelona 2017 CfP and Early Bird: https://www.reddit.com/r/Python/comments/63o1qz/pydata_barcelona_2017_cfp_and_early_bird/
reddit
PyData Barcelona 2017 CfP and Early Bird • r/Python
Hi all, I'd like to invite all of r/python to the [CfP and Early Bird of PyData Barcelona 2017](http://pydata.org/barcelona2017/) (19th-21st May...
How can I iterate through a string where a different function is applied depending on the characters position in the string?: https://www.reddit.com/r/Python/comments/63ox3x/how_can_i_iterate_through_a_string_where_a/
reddit
How can I iterate through a string where a different... • r/Python
I'm doing a variation of a Caesar cipher where instead of having every character shift the same amount, I instead need the user to enter in...
Cx_Freeze cannot find pkg_resources/*.*': http://stackoverflow.com/questions/42609043/cx-freeze-cannot-find-pkg-resources
Stackoverflow
Cx_Freeze cannot find pkg_resources/*.*'
I'm trying to build an EXE using a cx_Freeze setup.py file with the following command:
python setup.py bdist_msi
The command's output ends with:
Copying data from package pkg_resources... erro...
python setup.py bdist_msi
The command's output ends with:
Copying data from package pkg_resources... erro...
AutoTLDR bot for Twitter (based off the Reddit /u/autotldr): https://www.reddit.com/r/Python/comments/63p92x/autotldr_bot_for_twitter_based_off_the_reddit/
reddit
AutoTLDR bot for Twitter (based off the Reddit /u/autotldr) • r/Python
1 points and 2 comments so far on reddit
Help understanding something with Tkinter: https://www.reddit.com/r/Python/comments/63pjvc/help_understanding_something_with_tkinter/
reddit
Help understanding something with Tkinter • r/Python
Ok so I'm new to Python 2.7 and I just started learning about Tkinter. I have a few questions. So I was trying to make a little GUI to have 3...
[HELP]What web framework is best for.....: https://www.reddit.com/r/Python/comments/63pf8y/helpwhat_web_framework_is_best_for/
reddit
[HELP]What web framework is best for..... • r/Python
What web framework should I use to create a site where a select few users can log in and upload content while other people just come and view the...
I'm attempting an automation project: https://www.reddit.com/r/Python/comments/63pcsf/im_attempting_an_automation_project/
reddit
I'm attempting an automation project • r/Python
After having a summer job that involved typing id codes and zip codes into a box for 8 hours a day ice decided to try to automate it to put myself...
Recommendations for python scripting tutorials?: https://www.reddit.com/r/Python/comments/63qc4b/recommendations_for_python_scripting_tutorials/
reddit
Recommendations for python scripting tutorials? • r/Python
Studying for both CCNA and AWS associates certs. Any recommendations on python scripting tutorials geared towards system admins?
Print statements not working when serve_forever() is called?: http://stackoverflow.com/questions/43197518/print-statements-not-working-when-serve-forever-is-called
Stack Overflow
Print statements not working when serve_forever() is called?
I have the following small python script to run a local server for testing some html:
print('opened')
from http.server import HTTPServer, SimpleHTTPRequestHandler
server_address = ('', 8000)
htt...
print('opened')
from http.server import HTTPServer, SimpleHTTPRequestHandler
server_address = ('', 8000)
htt...
Python OSX - flat namespace in /usr/local/lib/python2.7/site-packages/easysnmp/interface.so: http://stackoverflow.com/questions/43200374/python-osx-flat-namespace-in-usr-local-lib-python2-7-site-packages-easysnmp-i
Stackoverflow
Python OSX - flat namespace in /usr/local/lib/python2.7/site-packages/easysnmp/interface.so
I can see a similar issue in this post here https://github.com/fgimian/easysnmp/issues/42
but I'm not sure if that same issues applies to me or not.
basically i have installs python via home-brew
but I'm not sure if that same issues applies to me or not.
basically i have installs python via home-brew
A python desktop news notifier, which display news from BBC (Top Stories). It pops notification with headline and a small description every 20 minutes. Short and sweet news.: https://www.reddit.com/r/Python/comments/63rv8a/a_python_desktop_news_notifier_which_display_news/
reddit
A python desktop news notifier, which display news from... • r/Python
1 points and 0 comments so far on reddit
[idea] Syntax enhancement for enum params. What's your opinion?: https://www.reddit.com/r/Python/comments/63pam7/idea_syntax_enhancement_for_enum_params_whats/
reddit
[idea] Syntax enhancement for enum params. What's your... • r/Python
I just thought of a nice syntax enhancement for functions that accept enums. It basically looks like this: directions = ['up', 'down',...