Probabilistic programming from scratch using python: https://www.oreilly.com/learning/probabilistic-programming-from-scratch
O’Reilly Media
Probabilistic programming from scratch
Working with uncertainty in real-world data.
Thonny on a Raspberry Pi: using the new Python IDE in Raspbian: https://www.reddit.com/r/Python/comments/6kfnbp/thonny_on_a_raspberry_pi_using_the_new_python_ide/
reddit
Thonny on a Raspberry Pi: using the new Python IDE in... • r/Python
1 points and 0 comments so far on reddit
I made a library that creates randomized book covers: https://www.reddit.com/r/Python/comments/6kfom8/i_made_a_library_that_creates_randomized_book/
reddit
I made a library that creates randomized book covers • r/Python
1 points and 0 comments so far on reddit
urllib.robotsparser seems horribly broken: https://www.reddit.com/r/Python/comments/6kg95f/urllibrobotsparser_seems_horribly_broken/
reddit
urllib.robotsparser seems horribly broken • r/Python
The urllib.robotparser library seems very broken. The code >>> import urllib.robotparser >>> rp = urllib.robotparser.RobotFileParser() ...
CPython recently moved to GitHub -- star the project to bump it up in GitHub's showcase!: https://www.reddit.com/r/Python/comments/6kg4w0/cpython_recently_moved_to_github_star_the_project/
reddit
CPython recently moved to GitHub -- star the project to... • r/Python
Per Victor Stinner's [message on python-dev](https://mail.python.org/pipermail/python-dev/2017-June/148523.html), GitHub has a [showcase page of...
Adding delimiter to txt file in Python 3: https://www.reddit.com/r/Python/comments/6kgkrj/adding_delimiter_to_txt_file_in_python_3/
reddit
Adding delimiter to txt file in Python 3 • r/Python
Hello, I am struggling to add a delimiter to my output file. I am grabbing data off of twitter in an attempt to export it to a csv for excel. Can...
Python illustration by /u/denholmsdead in sticker form. [Details in comments]: https://www.reddit.com/r/Python/comments/6kgnvy/python_illustration_by_udenholmsdead_in_sticker/
reddit
r/Python - Python illustration by /u/denholmsdead in sticker form. [Details in comments]
297 votes and 35 comments so far on Reddit
Talk Python launches a MongoDB for Python developers course: https://www.reddit.com/r/Python/comments/6khh6i/talk_python_launches_a_mongodb_for_python/
reddit
Talk Python launches a MongoDB for Python developers course • r/Python
6 points and 0 comments so far on reddit
python gettext fails to translate EDX project: https://stackoverflow.com/questions/44798230/python-gettext-fails-to-translate-edx-project
Stackoverflow
python gettext fails to translate EDX project
I am working on open EDX project which is built by django 1.8. Currently i am working on localization and I'm translating it to a new language. Both the Source and target languages are Unicode enco...
What software do I need to start programming using Python?: https://www.reddit.com/r/Python/comments/6khsyy/what_software_do_i_need_to_start_programming/
reddit
What software do I need to start programming using Python? • r/Python
I have installed the latest version of python and have notepad plus installed. What do I do now? How do I run my code as such? Is there any...
Need a book with exercises and solutions?: https://www.reddit.com/r/Python/comments/6khxbs/need_a_book_with_exercises_and_solutions/
reddit
Need a book with exercises and solutions? • r/Python
Hey, I've been looking for a beginner to intermediate book which has lots of examples, practice exercises and solutions for each of the exercises....
Python and C project repository structure: https://stackoverflow.com/questions/44806117/python-and-c-project-repository-structure
Stackoverflow
Python and C++ project repository structure
I'm refactoring the directory structure of a large Python repo that has a few dozen C and C++ files littered throughout. Is there a suggested architecture for a Python package that contains C/C++ c...
How to upload file as array element with poster?: https://stackoverflow.com/questions/44809764/how-to-upload-file-as-array-element-with-poster
Stackoverflow
How to upload file as array element with poster?
I am trying to repeat the following curl request:
curl -i -k -H "Content-Type: multipart/form-data" \
-F "method=uploadphoto" \
-F "version=1.2.3" \
-F "format=json" \
-F "image[0]=@/Users...
curl -i -k -H "Content-Type: multipart/form-data" \
-F "method=uploadphoto" \
-F "version=1.2.3" \
-F "format=json" \
-F "image[0]=@/Users...
Quick Tip: Speed up your Python data processing scripts with Process Pools: https://www.reddit.com/r/Python/comments/6kiqhe/quick_tip_speed_up_your_python_data_processing/
reddit
Quick Tip: Speed up your Python data processing scripts... • r/Python
1 points and 0 comments so far on reddit
Why is this improved sieve slower with pypy?: https://stackoverflow.com/questions/44811418/why-is-this-improved-sieve-slower-with-pypy
Stackoverflow
Why is this improved sieve slower with pypy?
def sieve(n):
nums = [0] * n
for i in range(2, int(n**0.5)+1):
if nums[i] == 0:
for j in range(i*i, n, i):
nums[j] = 1
return [i for i in range(2, n...
nums = [0] * n
for i in range(2, int(n**0.5)+1):
if nums[i] == 0:
for j in range(i*i, n, i):
nums[j] = 1
return [i for i in range(2, n...