Setting up a Python Development Environment with and without Docker: https://www.reddit.com/r/Python/comments/80xgpn/setting_up_a_python_development_environment_with/
reddit
Setting up a Python Development Environment with and... • r/Python
8 points and 2 comments so far on reddit
Python Plotting With Matplotlib (Guide Example Code): https://www.reddit.com/r/Python/comments/80xhav/python_plotting_with_matplotlib_guide_example_code/
reddit
Python Plotting With Matplotlib (Guide + Example Code) • r/Python
2 points and 0 comments so far on reddit
Just finished my first personal project - a site to share coding resources. Is anyone willing to take a look and give me feedback please?: https://www.reddit.com/r/Python/comments/80xjrc/just_finished_my_first_personal_project_a_site_to/
reddit
Just finished my first personal project - a site to... • r/Python
My site is www.noobhub.io and the repo is https://github.com/ollysmall/wikitowns. I have been slowly teaching myself python and django with the...
Looking to learn python what's the best way to start: https://www.reddit.com/r/Python/comments/80xkze/looking_to_learn_python_whats_the_best_way_to/
reddit
Looking to learn python what's the best way to start • r/Python
1 points and 0 comments so far on reddit
how to freeze python application for deployment in offline environment: https://www.reddit.com/r/Python/comments/80vy2v/how_to_freeze_python_application_for_deployment/
reddit
how to freeze python application for deployment in... • r/Python
I have to deploy python apps to some offline environment for business with code protection. Are there some good soluations?
Printing utf-8 strings in Sublime Text 2's console with Windows 7: https://stackoverflow.com/questions/48975692/printing-utf-8-strings-in-sublime-text-2s-console-with-windows-7
Stackoverflow
Printing utf-8 strings in Sublime Text 2's console with Windows 7
When running this code with python myscript.py from Windows console cmd.exe (i.e. outside of Sublime Text), it works:
# coding: utf8
import json
d = json.loads("""{"mykey": {"readme": "Café"}}""")...
# coding: utf8
import json
d = json.loads("""{"mykey": {"readme": "Café"}}""")...
For mod_wsgi, how do you deal with having to 'touch' the application script file every time a change is made to your code?: https://www.reddit.com/r/Python/comments/80xm4v/for_mod_wsgi_how_do_you_deal_with_having_to_touch/
reddit
For mod_wsgi, how do you deal with having to 'touch'... • r/Python
I've been wanting to use one of the modern python web frameworks, but I'm a little frustrated with mod_wsgi. Having to tell the server every time...
Is it possible to skip delegating a celery task if the params and the task name is already queued in the server?: https://stackoverflow.com/questions/45107418/is-it-possible-to-skip-delegating-a-celery-task-if-the-params-and-the-task-name
Stackoverflow
Is it possible to skip delegating a celery task if the params and the task name is already queued in the server?
Say that I have this task:
def do_stuff_for_some_time(some_id):
e = Model.objects.get(id=some_id)
e.domanystuff()
and I'm using it like so
do_stuff_for_some_time.apply_async(args=[some_i...
def do_stuff_for_some_time(some_id):
e = Model.objects.get(id=some_id)
e.domanystuff()
and I'm using it like so
do_stuff_for_some_time.apply_async(args=[some_i...
Learn to create Machine Learning Algorithms in Python and R from two Data Science experts. Code templates included.: https://www.reddit.com/r/Python/comments/80xxvj/learn_to_create_machine_learning_algorithms_in/
reddit
Learn to create Machine Learning Algorithms in Python... • r/Python
0 points and 1 comments so far on reddit
How to achieve stratified K fold splitting for arbitrary number of categorical variables?: https://stackoverflow.com/questions/48988182/how-to-achieve-stratified-k-fold-splitting-for-arbitrary-number-of-categorical-v
Stack Overflow
How to achieve stratified K fold splitting for arbitrary number of categorical variables?
I have a dataframe of the form, df:
cat_var_1 cat_var_2 num_var_1
0 Orange Monkey 34
1 Banana Cat 56
2 Orange Dog 22
3 Banana...
cat_var_1 cat_var_2 num_var_1
0 Orange Monkey 34
1 Banana Cat 56
2 Orange Dog 22
3 Banana...
I know it's nothing big but I just finished my first major project: Hangman: https://www.reddit.com/r/Python/comments/80ypp2/i_know_its_nothing_big_but_i_just_finished_my/
reddit
I know it's nothing big but I just finished my first... • r/Python
I don't know if posting projects is allowed, I'll remove this post if it isn't. It's basically the traditional Hangman game, but on Python! Bug...
Program to set desktop background with two clicks: https://www.reddit.com/r/Python/comments/80xo62/program_to_set_desktop_background_with_two_clicks/
reddit
Program to set desktop background with two clicks • r/Python
4 points and 7 comments so far on reddit
Need advice for python pitch at work!: https://www.reddit.com/r/Python/comments/80zbnv/need_advice_for_python_pitch_at_work/
reddit
Need advice for python pitch at work! • r/Python
Hey guys! In a couple of weeks I will have a talk at work trying to highlight the potential of python and the thriving ecosystem especially...
[TIL] CPython is mostly written in Python (not C): https://www.reddit.com/r/Python/comments/80zc9p/til_cpython_is_mostly_written_in_python_not_c/
reddit
[TIL] CPython is mostly written in Python (not C) • r/Python
6 points and 1 comments so far on reddit
URGENT: I have fully automated my 50k p/y job and someone is about to snitch on me! (What do I do?): https://www.reddit.com/r/Python/comments/810crm/urgent_i_have_fully_automated_my_50k_py_job_and/
reddit
URGENT: I have fully automated my 50k p/y job and someone is about...
Long story short, I used python to completely automate my entire job, I have to gather data from spreadsheets and all sorts and derive reports and...
Pygame transform.threshold() function does not take keyword arguments: https://www.reddit.com/r/Python/comments/810sjv/pygame_transformthreshold_function_does_not_take/
reddit
Pygame transform.threshold() function does not take... • r/Python
I have a function in a class to change the colour of a surface. def setColour(self, colour): pygame.transform.threshold(self.surface,...