[python] Create Task from Sale Order tutorial(Odoo v11): https://www.reddit.com/r/Python/comments/947du1/python_create_task_from_sale_order_tutorialodoo/
reddit
r/Python - [python] Create Task from Sale Order tutorial(Odoo v11)
1 vote and 0 comments so far on Reddit
Goodbye Python, Hello Go: https://thinkfaster.co/2018/07/goodbye-python-hello-go/
[Python] Reconcile Partial Payment without write off in (Odoo V11): https://www.reddit.com/r/Python/comments/947ut7/python_reconcile_partial_payment_without_write/
reddit
r/Python - [Python] Reconcile Partial Payment without write off in (Odoo V11)
1 vote and 0 comments so far on Reddit
Video of PyData Berlin 2018 conference have been uploaded to Youtube: https://www.reddit.com/r/Python/comments/94810x/video_of_pydata_berlin_2018_conference_have_been/
reddit
r/Python - Video of PyData Berlin 2018 conference have been uploaded to Youtube
1 vote and 0 comments so far on Reddit
Sharing my open-source project that maybe useful for python devs: https://www.reddit.com/r/Python/comments/9485ie/sharing_my_opensource_project_that_maybe_useful/
reddit
r/Python - Sharing my open-source project that maybe useful for python devs
1 vote and 0 comments so far on Reddit
The 2018 Top Programming Languages According To IEEE - Python Extends Its Lead, And Assembly Enters The Top Ten: https://www.reddit.com/r/Python/comments/94858z/the_2018_top_programming_languages_according_to/
reddit
The 2018 Top Programming Languages According To IEEE -... • r/Python
2 points and 0 comments so far on reddit
OpenGL render view without a visible window in python: https://stackoverflow.com/questions/51627603/opengl-render-view-without-a-visible-window-in-python
Stack Overflow
OpenGL render view without a visible window in python
I need to render some scene. I managed to do it in python using pyopengl and pygame. The problem is that it creates a window for a short period of time.
I want to render the same image and save it,
I want to render the same image and save it,
How to get live stock prices with Python (Update to the yahoo_fin package): https://www.reddit.com/r/Python/comments/948oi3/how_to_get_live_stock_prices_with_python_update/
reddit
r/Python - How to get live stock prices with Python (Update to the yahoo_fin package)
1 vote and 0 comments so far on Reddit
connecting to outlook and retrieving all emails from inbox with headers: https://www.reddit.com/r/Python/comments/949qfi/connecting_to_outlook_and_retrieving_all_emails/
reddit
r/Python - connecting to outlook and retrieving all emails from inbox with headers
1 vote and 0 comments so far on Reddit
why xlwings suppresses logging to a file: https://stackoverflow.com/questions/51632468/why-xlwings-suppresses-logging-to-a-file
Stack Overflow
why xlwings suppresses logging to a file
In my app.py module I set up a logger with console and file handlers like this:
import logging
logger = logging.getLogger('app')
logger.setLevel(logging.DEBUG)
console_handler = logging.StreamHan...
import logging
logger = logging.getLogger('app')
logger.setLevel(logging.DEBUG)
console_handler = logging.StreamHan...
Don't know what to drink? Let the RNN mix you a cocktail!: https://www.reddit.com/r/Python/comments/94a02h/dont_know_what_to_drink_let_the_rnn_mix_you_a/
reddit
r/Python - Don't know what to drink? Let the RNN mix you a cocktail!
1 vote and 0 comments so far on Reddit
After too many broken builds, I made a tool for devs who use pipy packages....looking for feedback!: https://www.reddit.com/r/Python/comments/94aomu/after_too_many_broken_builds_i_made_a_tool_for/
reddit
r/Python - After too many broken builds, I made a tool for devs who use pipy packages....looking for feedback!
1 vote and 1 comment so far on Reddit
Aggregated Audit Logging with Google Cloud and Python | AdminTome Blog: https://www.reddit.com/r/Python/comments/94awjt/aggregated_audit_logging_with_google_cloud_and/
reddit
r/Python - Aggregated Audit Logging with Google Cloud and Python | AdminTome Blog
1 vote and 0 comments so far on Reddit
Discussion: What does itertools mean by "vectorized" building blocks?: https://www.reddit.com/r/Python/comments/94ayx1/discussion_what_does_itertools_mean_by_vectorized/
reddit
r/Python - Discussion: What does itertools mean by "vectorized" building blocks?
1 vote and 0 comments so far on Reddit
I want to create a script that polls all the processes running on a Windows machine and find the ones with memory and CPU usage. What is the best way to do this?: https://www.reddit.com/r/Python/comments/94b6zg/i_want_to_create_a_script_that_polls_all_the/
reddit
r/Python - I want to create a script that polls all the processes running on a Windows machine and find the ones with memory and…
1 vote and 0 comments so far on Reddit
ipython - "cannot import name 'create_prompt_application' from 'prompt_toolkit.shortcuts'": https://www.reddit.com/r/Python/comments/94b8rz/ipython_cannot_import_name_create_prompt/
reddit
r/Python - ipython - "cannot import name 'create_prompt_application' from 'prompt_toolkit.shortcuts'"
1 vote and 0 comments so far on Reddit
Python Pandas: pivot table with count as aggfunc gives different result than value_counts: https://stackoverflow.com/questions/51333520/python-pandas-pivot-table-with-count-as-aggfunc-gives-different-result-than-val
Stack Overflow
Python Pandas: pivot table with count as aggfunc gives different result than value_counts
I am working with some data and end up with a situation where I want to cut a series like this:
df = pd.DataFrame({'A': 10000*[1], 'B': np.random.randint(0, 1001, 10000)})
df['level'] = pd.cut(df.B,
df = pd.DataFrame({'A': 10000*[1], 'B': np.random.randint(0, 1001, 10000)})
df['level'] = pd.cut(df.B,