EuroPython 2019 is going to be in Basel, Switzerland: https://www.reddit.com/r/Python/comments/a41v2n/europython_2019_is_going_to_be_in_basel/
reddit
r/Python - EuroPython 2019 is going to be in Basel, Switzerland
1 vote and 0 comments so far on Reddit
Quick guide: generate images with text using Pillow: https://www.reddit.com/r/Python/comments/a421eh/quick_guide_generate_images_with_text_using_pillow/
reddit
r/Python - Quick guide: generate images with text using Pillow
4 votes and 0 comments so far on Reddit
I had never thought of becoming a programmer until I knew Python. It is relatively easy to learn, powerful and clean.: https://www.reddit.com/r/Python/comments/a42k2b/i_had_never_thought_of_becoming_a_programmer/
reddit
r/Python - I had never thought of becoming a programmer until I knew Python. It is relatively easy to learn, powerful and clean.
1 vote and 2 comments so far on Reddit
Use keras ImageDataGenerator.flow_from_directory() with Talos Scan(): https://stackoverflow.com/questions/53559068/use-keras-imagedatagenerator-flow-from-directory-with-talos-scan
Stack Overflow
Use keras ImageDataGenerator.flow_from_directory() with Talos Scan()
Talos is a module that allows you to do hyperparameter tuning on keras models you've already written code for. The conventional way it is used in examples is with the Scan class which is instantiated
Is "Python for Biologists" for biologists only?: https://www.reddit.com/r/Python/comments/a448g0/is_python_for_biologists_for_biologists_only/
reddit
r/Python - Is "Python for Biologists" for biologists only?
1 vote and 1 comment so far on Reddit
I'm looking for python dev tools (pipsi, pre-commit, etc): https://www.reddit.com/r/Python/comments/a44lsd/im_looking_for_python_dev_tools_pipsi_precommit/
reddit
r/Python - I'm looking for python dev tools (pipsi, pre-commit, etc)
1 vote and 0 comments so far on Reddit
Someone should write a python program so anyone can do this. I don't think this is anything more than generating greyscale and binning to six different grey scale levels. I know it probably gets a little more complicated than that under certain conditions without going into detail about it.: https://www.reddit.com/r/Python/comments/a44526/someone_should_write_a_python_program_so_anyone/
reddit
r/Python - Someone should write a python program so anyone can do this. I don't think this is anything more than generating greyscale…
1 vote and 1 comment so far on Reddit
Unittest for invoking a TKinter GUI: https://stackoverflow.com/questions/53641112/unittest-for-invoking-a-tkinter-gui
Stack Overflow
Unittest for invoking a TKinter GUI
Assume a script that initiates a TKinter GUI (e.g., scripts/launch_GUI.py) and is part of a PyPI package (e.g., MyPackage).
.
├── appveyor.yml
├── MyPackage
│ ├── TkOps.py
│ └── CoreFunctions....
.
├── appveyor.yml
├── MyPackage
│ ├── TkOps.py
│ └── CoreFunctions....
Sentiment Analysis on the subreddits of various programming languages [OC]: https://www.reddit.com/r/Python/comments/a44y3o/sentiment_analysis_on_the_subreddits_of_various/
reddit
r/Python - Sentiment Analysis on the subreddits of various programming languages [OC]
3 votes and 0 comments so far on Reddit
Here is a tutorial to understand the asterisk (star) operator in Python... (finally): https://www.reddit.com/r/Python/comments/a3zodb/here_is_a_tutorial_to_understand_the_asterisk/
reddit
r/Python - Here is a tutorial to understand the asterisk (star) operator in Python... (finally)
1 vote and 0 comments so far on Reddit
Gitlab CI - Django functional tests - splinter: https://stackoverflow.com/questions/53575348/gitlab-ci-django-functional-tests-splinter
Stack Overflow
Gitlab CI - Django functional tests - splinter
I want to run some automation tests on github on a project of mine with a Django framework. Therefore I am using a Django functional test. While executing the test on my local pc works fine, my pip...