Choosing the right programming language for your business: https://www.reddit.com/r/Python/comments/579ixz/choosing_the_right_programming_language_for_your/
reddit
Choosing the right programming language for your business • /r/Python
0 points and 0 comments so far on reddit
Update mayavi plot in loop: http://stackoverflow.com/questions/39840638/update-mayavi-plot-in-loop
Stack Overflow
Update mayavi plot in loop
What I want to do is to update a mayavi plot in a loop. I want the updating of the plot to be done at a time specified by me (unlike, e.g., the animation decorator).
So an example piece of code I ...
So an example piece of code I ...
pip install bs4 giving _socketobject error: http://stackoverflow.com/questions/39935335/pip-install-bs4-giving-socketobject-error
Stackoverflow
pip install bs4 giving _socketobject error
I am trying to install BeautifulSoup4 using the command pip install BeautifulSoup4, as per the bs documentation here:
https://www.crummy.com/software/BeautifulSoup/#Download
I am using Mac OS X 1...
https://www.crummy.com/software/BeautifulSoup/#Download
I am using Mac OS X 1...
[ANN] Zeus IDE - Version 3.98g released: https://www.reddit.com/r/Python/comments/57a1sv/ann_zeus_ide_version_398g_released/
reddit
[ANN] Zeus IDE - Version 3.98g released • /r/Python
The Zeus IDE does the standard Python code folding, syntax highlighting, smart indenting, code navigation etc. In addition this latest Zeus...
I have a problem with the 3 consecutives points ...: https://www.reddit.com/r/Python/comments/57a3nn/i_have_a_problem_with_the_3_consecutives_points/
reddit
I have a problem with the 3 consecutives points ... • /r/Python
When i type ">>> class Himmler: ... type_of_person=Nazi ... " here it comes the problem, i don't know how to eliminate the 3 points to...
What are some good python books? Not for learning the language, but about the language itself.: https://www.reddit.com/r/Python/comments/57a644/what_are_some_good_python_books_not_for_learning/
reddit
What are some good python books? Not for learning the language,...
Python was my first programming language, I still love it and love to code in it. I don't, however, know much about the language itself. What is...
Python Weekly - Issue 265 : http://us2.campaign-archive.com/?u=e2e180baf855ac797ef407fc7
How to turn off and on a servo?: https://www.reddit.com/r/Python/comments/57b0ir/how_to_turn_off_and_on_a_servo/
reddit
How to turn off and on a servo? • /r/Python
I'm building a box with a Raspberry pi and are using a small servo to lock and unlock the box. But I don't want the servo to be buzzing or jitter...
Upload file to MS SharePoint using Python OneDrive SDK: http://stackoverflow.com/questions/39981210/upload-file-to-ms-sharepoint-using-python-onedrive-sdk
Stack Overflow
Upload file to MS SharePoint using Python OneDrive SDK
Is it possible to upload a file to the Shared Documents library of a Microsoft SharePoint site with the Python OneDrive SDK?
This documentation says it should be (in the first sentence), but I ca...
This documentation says it should be (in the first sentence), but I ca...
Can we have a monthly Hiring thread like r/cpp or others too?: https://www.reddit.com/r/Python/comments/57ba50/can_we_have_a_monthly_hiring_thread_like_rcpp_or/
reddit
Can we have a monthly Hiring thread like r/cpp or... • /r/Python
Just as the title says, i suggest that we should have monthly hiring threads. This way employers will be able to contact the vast pool of python...
GitHub - thp/minidb: A simple SQLite3 store for Python objects: https://www.reddit.com/r/Python/comments/57bbnp/github_thpminidb_a_simple_sqlite3_store_for/
reddit
GitHub - thp/minidb: A simple SQLite3 store for Python... • /r/Python
2 points and 0 comments so far on reddit
GitHub - thp/urlwatch: A tool for monitoring webpages for updates: https://www.reddit.com/r/Python/comments/57bbpu/github_thpurlwatch_a_tool_for_monitoring_webpages/
reddit
GitHub - thp/urlwatch: A tool for monitoring webpages... • /r/Python
2 points and 0 comments so far on reddit
Free Python Books for Educators / Students: https://www.reddit.com/r/Python/comments/57bdo4/free_python_books_for_educators_students/
reddit
Free Python Books for Educators / Students • /r/Python
I think it’s very important for teens and college students to learn how to program. Science, Technology, Engineering and Mathematics is such a...
My Selenium script now gives me this: Remote end closed connection without response. The file hasn't changed, it worked fine the other day.: https://www.reddit.com/r/Python/comments/57bvbh/my_selenium_script_now_gives_me_this_remote_end/
reddit
My Selenium script now gives me this: Remote end closed... • r/Python
Traceback (most recent call last): File "myfile.py", line 1, in import mymodule as m File "/path/to/myfile.py", line...
Survey About Package Requirements Management: https://www.reddit.com/r/Python/comments/57bslu/survey_about_package_requirements_management/
reddit
Survey About Package Requirements Management • /r/Python
Hey all, So I'm going to clarify my title quickly. This is not about replacing pip (as [yarn](https://github.com/yarnpkg/yarn) did recently with...
Python Windows Installer with all dependencies?: http://stackoverflow.com/questions/17428199/python-windows-installer-with-all-dependencies
Stack Overflow
Python Windows Installer with all dependencies?
I have a package in the PyPI repository. I include a Windows installer by running the following command to upload a new version, specifically the 'bdist_wininst':
python3 setup.py register sdist
python3 setup.py register sdist
Static types in Python: http://blog.zulip.org/2016/10/13/static-types-in-python-oh-mypy/
The Zulip Blog
Static types in Python, oh my(py)!
Over the last few years, static type checkers have become available for popular dynamic languages like PHP (Hack) and JavaScript (Flow and TypeScript), and have seen wide adoption. Two years ago, a provisional syntax for static type annotations was added…