Packaging scientific applications for windows?: https://www.reddit.com/r/Python/comments/7agcfy/packaging_scientific_applications_for_windows/
reddit
Packaging scientific applications for windows? • r/Python
We have the worst possible distribution situation where we have very complex software with a very tech unsavy windows based clientel in highly...
Legacy code – tests first or setup CI?: https://www.reddit.com/r/Python/comments/7aghy1/legacy_code_tests_first_or_setup_ci/
reddit
Legacy code – tests first or setup CI? • r/Python
I've been working on a project for a large IT department to automate all the things. It started out small but more people are starting to use it,...
Trying to read real-time data from website: https://www.reddit.com/r/Python/comments/7agjhg/trying_to_read_realtime_data_from_website/
reddit
Trying to read real-time data from website • r/Python
So I am no stranger to scraping sites and parsing through the data with BeautifulSoup but I don't even know where to begin to grab data that is...
tracing - Trace program execution line-by-line: https://www.reddit.com/r/Python/comments/7agq39/tracing_trace_program_execution_linebyline/
reddit
tracing - Trace program execution line-by-line • r/Python
1 points and 0 comments so far on reddit
I love Python but why is it so slow?: https://www.reddit.com/r/Python/comments/7agyka/i_love_python_but_why_is_it_so_slow/
reddit
I love Python but why is it so slow? • r/Python
I love Python and am happy whenever I get to use it professionally but why is it so slow? I am in the process of deciding whether to go with...
Learning python to build a cryptocurrency miner with a gui?: https://www.reddit.com/r/Python/comments/7ahftq/learning_python_to_build_a_cryptocurrency_miner/
reddit
Learning python to build a cryptocurrency miner with a gui? • r/Python
Hello, i'm learning Python for a project. I need to build a cryptocurrency miner with a GUI (pretty much like minersgate) I got through most of...
How to know if you're fit for programming or not?: https://www.reddit.com/r/Python/comments/7ahkgm/how_to_know_if_youre_fit_for_programming_or_not/
reddit
How to know if you're fit for programming or not? • r/Python
Well, I don't know how to apply what I've learned about Python, OOP is kind of a mess,... I'm an international student (currently sophomore) in...
I've heard about the 'Monty Hall Problem' and decided to run a simulation for it...: https://www.reddit.com/r/Python/comments/7ahpgo/ive_heard_about_the_monty_hall_problem_and/
reddit
I've heard about the 'Monty Hall Problem' and decided... • r/Python
I've heard about the problem and it seems weird,so I thought why not run a simulation,and here's the code: import random yayresult =...
Why sprinkle `with` everywhere when using async?: https://www.reddit.com/r/Python/comments/7ahupa/why_sprinkle_with_everywhere_when_using_async/
reddit
Why sprinkle `with` everywhere when using async? • r/Python
Like this: @app.post("/api/login") async def login(request): async with app.pg_pool.acquire() as pg: users = await...
I wrote a python script to download video lessons from Linkedin Learning: https://www.reddit.com/r/Python/comments/7aidw5/i_wrote_a_python_script_to_download_video_lessons/
reddit
I wrote a python script to download video lessons from... • r/Python
0 points and 1 comments so far on reddit
Using stacked conda environments: https://www.reddit.com/r/Python/comments/7aiasf/using_stacked_conda_environments/
reddit
Using stacked conda environments • r/Python
I want to use multiple conda environments together. I have a huge conda environment containing a lot of packages (lets call it the monolith) which...
Looking for some creativity and constructive criticism: https://www.reddit.com/r/Python/comments/7ai7ta/looking_for_some_creativity_and_constructive/
reddit
Looking for some creativity and constructive criticism • r/Python
A little presentation; I'm Guillem Alomar, 28yo computer scientist from Mallorca, been living in Barcelona for 10 years now. About 4 years ago I...
setting up environment in virtaulenv using python3 stuck on setuptools, pip, wheel: https://stackoverflow.com/questions/45674311/setting-up-environment-in-virtaulenv-using-python3-stuck-on-setuptools-pip-whe
Stackoverflow
setting up environment in virtaulenv using python3 stuck on setuptools, pip, wheel
Running the following:
virtualenv -p python3 venv
gives:
Running virtualenv with interpreter /usr/bin/python3
Using base prefix '/usr'
New python executable in /specific/a/home/cc/students/csg...
virtualenv -p python3 venv
gives:
Running virtualenv with interpreter /usr/bin/python3
Using base prefix '/usr'
New python executable in /specific/a/home/cc/students/csg...
Python 2.6 vs 2.7 Multi-Threaded performance Issue (futex): https://stackoverflow.com/questions/47051545/python-2-6-vs-2-7-multi-threaded-performance-issue-futex
Stackoverflow
Python 2.6 vs 2.7 Multi-Threaded performance Issue (futex)
I have a simple Monte-Carlo Pi computation program. I tried running it on 2 different boxes(same hardware with slightly different kernel versions). I am seeing significant performance drop in one c...
New package: python-disk-collections - disk list in pythonic way: https://www.reddit.com/r/Python/comments/7aihsb/new_package_pythondiskcollections_disk_list_in/
reddit
New package: python-disk-collections - disk list in... • r/Python
Hi, Recently I created package python-disk-collections. You can install by > $ pip install python-disk-collections Intend of package is to store...
tt - a Python library for Boolean algebra and truth tables: https://www.reddit.com/r/Python/comments/7aiuyp/tt_a_python_library_for_boolean_algebra_and_truth/
reddit
tt - a Python library for Boolean algebra and truth tables • r/Python
126 points and 13 comments so far on reddit
Using Luigi to setup pipeline to process lots of files (500k ): https://www.reddit.com/r/Python/comments/7ajt3k/using_luigi_to_setup_pipeline_to_process_lots_of/
reddit
Using Luigi to setup pipeline to process lots of files... • r/Python
We have about 500k we need to run through some type of pipeline. We have a folder with files with random names. It has 500k+ files. We need to...