How to filter out values after space in CSV and save as new excel sheet?: https://www.reddit.com/r/Python/comments/701ugr/how_to_filter_out_values_after_space_in_csv_and/
reddit
How to filter out values after space in CSV and save as... • r/Python
I am an adjunct professor in information systems, and I am relatively new to python having used mostly visual basic in the past. So my goal is to...
Datetime library Arrow is looking for maintainers: https://www.reddit.com/r/Python/comments/7020vb/datetime_library_arrow_is_looking_for_maintainers/
reddit
Datetime library Arrow is looking for maintainers • r/Python
2 points and 0 comments so far on reddit
Short Warning: Numpy random is not random by default when using multithreading!: https://www.reddit.com/r/Python/comments/702hjz/short_warning_numpy_random_is_not_random_by/
reddit
Short Warning: Numpy random is not random by default... • r/Python
Just a heads up because I came across this bug in a very unfortunate way... https://github.com/numpy/numpy/issues/9650
Python Weekly - Issue 312: http://mailchi.mp/pythonweekly/python-weekly-issue-312
Get python XLwings user-defined function on Excel to run at regular interval: https://stackoverflow.com/questions/46088382/get-python-xlwings-user-defined-function-on-excel-to-run-at-regular-interval
Stackoverflow
Get python XLwings user-defined function on Excel to run at regular interval
Suppose I have this UDF defined in python v3.6 xlwings v0.11 to run on Excel 2016.
import xlwings as xw
@xw.func
def random_val(x):
import random
return random.random()*x
The UDF is impo...
import xlwings as xw
@xw.func
def random_val(x):
import random
return random.random()*x
The UDF is impo...
Help with small project based on the youtube-dl library: https://www.reddit.com/r/Python/comments/702sr8/help_with_small_project_based_on_the_youtubedl/
reddit
Help with small project based on the youtube-dl library • r/Python
So the problem is the ID3 tags for the music downloaded. I started writing the code after getting tired of using online video and music...
Can Python check if some security cameras have been covered or saturated with artificial lights?: https://www.reddit.com/r/Python/comments/70366e/can_python_check_if_some_security_cameras_have/
reddit
Can Python check if some security cameras have been... • r/Python
Hi everyone, I'm working on a Debian server (version 8) that captures some h.264 streams from security cameras with ffmpeg, and stores them in...
How do you install pip or miniconda or any package for that matter?: https://www.reddit.com/r/Python/comments/702z3u/how_do_you_install_pip_or_miniconda_or_any/
reddit
How do you install pip or miniconda or any package for... • r/Python
So I am using pycharm, and I migrated from my desktop to this laptop. Installed pycharm, downloaded anaconda and miniconda, and used their...
Scraping Top All Day from set of days last year.: https://www.reddit.com/r/Python/comments/7037xy/scraping_top_all_day_from_set_of_days_last_year/
reddit
Scraping Top All Day from set of days last year. • r/Python
So I currently use a script to scrape info from current posts off of reddit once a day. I would really like to scrape the 'Top from 24 hours' from...
Why Is Python Growing So Quickly?: https://stackoverflow.blog/2017/09/14/python-growing-quickly/
Stack Overflow Blog
Why is Python Growing So Quickly?
We recently showed that, based on Stack Overflow question visits, Python has a claim to being the fastest-growing major programming language, and that it has become the most visited tag on Stack Overflow within high-income countries. Why is Python growing…
Learning Python Using Chrome OS: https://www.reddit.com/r/Python/comments/703qwt/learning_python_using_chrome_os/
reddit
Learning Python Using Chrome OS • r/Python
I've got a Chromebook that I bought a few months ago and a project just came up that requires me to learn the programming language Python. Nothing...
What do you use for reverse geocoding: https://www.reddit.com/r/Python/comments/70464b/what_do_you_use_for_reverse_geocoding/
reddit
What do you use for reverse geocoding • r/Python
I have a data set of about 62k addresses that need lat and lon assigned to them. What is your favorite or recommended process for this task?
Using execjs to create a simple, universal parser for Javascript table data (instead of a single regex for each unique table): https://www.reddit.com/r/Python/comments/7044r9/using_execjs_to_create_a_simple_universal_parser/
reddit
Using execjs to create a simple, universal parser for... • r/Python
I spent about 2 days trying to figure out how to parse javascript I scraped from a website. I started off trying to use regex which seems to be...