After two years of development, just announced tomviz 1.0 for 3D Visualization and 3D Python Data Processing - with NumPy, SciPy, and sample datasets [open-source, open-science, OSX, Windows, Linux]: https://www.reddit.com/r/Python/comments/62drp7/after_two_years_of_development_just_announced/
reddit
After two years of development, just announced tomviz... • r/Python
2 points and 2 comments so far on reddit
Learn Scrapy - video series: https://www.reddit.com/r/Python/comments/62du38/learn_scrapy_video_series/
Python Weekly - Issue 288: http://us2.campaign-archive.com/?u=e2e180baf855ac797ef407fc7
A Python implementation of formal systems from the book “Gödel, Escher, Bach”: https://github.com/alexprengere/FormalSystems
GitHub
GitHub - alexprengere/FormalSystems: A Python implementation of Douglas Hofstadter formal systems, from his book "Gödel, Escher…
A Python implementation of Douglas Hofstadter formal systems, from his book "Gödel, Escher, Bach" - alexprengere/FormalSystems
How can I get 2.x-like sorting behaviour in Python 3.x?: http://stackoverflow.com/questions/26575183/how-can-i-get-2-x-like-sorting-behaviour-in-python-3-x
Stack Overflow
How can I get 2.x-like sorting behaviour in Python 3.x?
I'm trying to replicate (and if possible improve on) Python 2.x's sorting behaviour in 3.x, so that mutually orderable types like int, float etc. are sorted as expected, and mutually unorderable ty...
Email notification on new folder/file creation for certain directory (xpost /r/Synology): https://www.reddit.com/r/Python/comments/62ekeo/email_notification_on_new_folderfile_creation_for/
reddit
Email notification on new folder/file creation for... • r/Python
At title says I'm trying to find out if you can monitor a directory and send an email alert if the directory changes. IE new file or file deletion...
How can I concatenate str and int objects?: http://stackoverflow.com/questions/25675943/how-can-i-concatenate-str-and-int-objects
Stack Overflow
How can I concatenate str and int objects?
If I try to do the following:
things = 5
print("You have " + things + " things.")
I get the following error in Python 3.x:
Traceback (most recent call last):
File "<s...
things = 5
print("You have " + things + " things.")
I get the following error in Python 3.x:
Traceback (most recent call last):
File "<s...
Flask-AppMaker is a Flask Web App that writes Flask Web App code for you: https://www.reddit.com/r/Python/comments/62f6th/flaskappmaker_is_a_flask_web_app_that_writes/
reddit
Flask-AppMaker is a Flask Web App that writes Flask Web... • r/Python
1 points and 1 comments so far on reddit
Need Help with a print statement: https://www.reddit.com/r/Python/comments/62fisj/need_help_with_a_print_statement/
reddit
Need Help with a print statement • r/Python
My code works perfectly, the only part I need help with is adding a print statement that says, for example, "Red Turtle Wins!" Below is my code,...
Customizing class creation in Python: https://snarky.ca/customizing-class-creation-in-python/
Tall, Snarky Canadian
Customizing class creation in Python
When one thinks of ways of customizing classes at creation time, people probably typically think of metaclasses and class decorators. Metaclasses are at typically viewed as the beginning of class creation while class decorators are at the end. But what you…
[HELP] python script to download image from subreddit and displaying it fullscreen: https://www.reddit.com/r/Python/comments/62g27e/help_python_script_to_download_image_from/
reddit
[HELP] python script to download image from subreddit... • r/Python
Hello! I'm rying to make a python script that acceses a reddit page like https://www.reddit.com/r/dankmemes/new/ then it downloads an image...
Getting custom command line arguments into Flask: https://www.reddit.com/r/Python/comments/62glpr/getting_custom_command_line_arguments_into_flask/
reddit
Getting custom command line arguments into Flask • r/Python
I'm writing a flask app that reads a configuration file for further work (it is connected to some AWS services, and has to know where to look,...
How to get a list of all variables in a program?: https://www.reddit.com/r/Python/comments/62gtmt/how_to_get_a_list_of_all_variables_in_a_program/
reddit
How to get a list of all variables in a program? • r/Python
How do you manage this? I've finished the program and just need a list of all the defined variables I've included in my code. Is there a simple...