sub
stringclasses
1 value
title
stringlengths
7
303
selftext
stringlengths
0
8.65k
upvote_ratio
float64
0.08
1
id
stringlengths
9
9
created_utc
float64
1.65B
1.65B
Python
I fixed python traceback real quick
​ https://preview.redd.it/yqvg54ml9sn81.png?width=2000&format=png&auto=webp&s=575484421b18464c240d3f384d3a1c7e3f4e3a34 yourprog = "whatever.py" from subprocess import check_output, STDOUT def abrT(r): return r o = "" # I don't care about unreadable code I...
0.69
t3_tfnswk
1,647,452,918
Python
Scrape Google Books in Python
This blog post uses [`parsel`](https://parsel.readthedocs.io/) as an HTML/XML parser that supports full XPath, instead of [`bs4`](https://www.crummy.com/software/BeautifulSoup/bs4/doc/). Shows how to scrape: - title - link - displayed link - snippet - author - publication date - thumbnail - preview, and more editions....
0.5
t3_tfm16q
1,647,448,203
Python
OpenTelemetry and Distributed Tracing in Python - Introduction
0.33
t3_tflm99
1,647,447,107
Python
Add jemalloc to your Python Docker images
1
t3_tflf1p
1,647,446,556
Python
What's your favorite module/library/package?
Just wondering what's your favorite module and package which you like to use them? Mine is re. You can tell multiple, by the way.
0.5
t3_tfkh8z
1,647,445,189
Python
Writing production grade pandas with hamilton!
While Pandas is incredibly flexible and easy to get started with, it doesn't lend itself to writing good quality, extensible code. This is usually fine. Lots of it is thrown away -- written in notebooks and never seen again. However, a lot amount of it ends up making it into production ETLs, services, etc.. At Stitch...
0.8
t3_tfkahz
1,647,444,723
Python
First time I used python
I'm coding with python for half a month now, in the beginning I was a bit sceptical what I would use it for but today I used it for the first time. To cure boredom, me and my friends are doing typeraces where we have to type as fast as possible. I'm pretty good at that but there is someone in my class that is just a ...
0.84
t3_tfiry5
1,647,440,485
Python
OPToggles - a feature flag Open Source project
Hey r/Python! Just wanted to share our open source project launching today. Thought some of you might find it useful, and we would love to hear your feedback. As devs, we often want our frontend to reflect the permissions enforced by the backend - i.e. if a user is not allowed to run the action behind a button - don't...
0.76
t3_tfil3b
1,647,439,946
Python
How do you really share constants across your project in a Pythonic way?
Assuming i have a package i created who get input text, and return a huge dictionary with 50+ keys. Since *all other packages* in the program are using this dictionary and play with those keys, I don't want to hard code the keys, but keep them as global **constants**. So here are my options and i feel uncomfortable ...
0.57
t3_tfhvue
1,647,437,921
Python
Import of modules is slowing down executable. Can it be imported locally or what can be done differently ?
I am importing the following modules/libraries which is causing the exe to take a few minutes to start. How can I store them locally or what can I do differently so that the exe starts quickly? When I run this from the Notebook it the application runs without any delay. I wonder if there is a way to speed up the exe. ...
1
t3_tfh1l5
1,647,435,382
Python
Stylistic choice of validation functions
Hey all! Got a question. I’m working on a validation script for work verifying some supplied input against required values. I’m wondering, stylistically, if there’s a “preferred way” to write these functions. An example function… Def name_max_length(name): if 1 < len(name) <= 128: ...
1
t3_tfgida
1,647,433,601
Python
what to do after practice python. org?
Helo I'm a beginner and I've finished the exercises from practice python org and I m clueless as to what my next step should be. What do you recommend, I tried advent of code but a lot of the exercises are way too hard for me. thanks very much
0.79
t3_tfflsy
1,647,430,590
Python
Create a hello world app using django
0.75
t3_tffh4r
1,647,430,119
Python
My first ever Python Project!! I named it tagSearch
I saw a twitter post the other day "Is there a tool that I can get meta tags off of a web site? I couldn't find any". I thought to myself, there probably is, but I should do one too for at least practice. So I made this small script called tagsearch, basically it collects wanted tags off a site. It can also scr...
0.67
t3_tff544
1,647,428,851
Python
created a small utility to automatically activate Poetry virtualenvs when changing directories
[https://github.com/tvaintrob/auto-poetry-env](https://github.com/tvaintrob/auto-poetry-env) tested only on MacOS with zsh, heavily inspired by pyenv-venv's auto activation, please share any thoughts and suggestions!
0.75
t3_tfdemi
1,647,421,875
Python
GitHub - jamalex/notion-py: Unofficial Python API client for Notion.so
0.67
t3_tfcksk
1,647,418,317
Python
Which logic for if-else inside a function is better or more pythonic?
The logic between f1 and f2 is exactly the same, but the syntax is slightly different. This type of function shows up everywhere. Is one easier to read, or preferred in some way? Side note: I thought it was interesting that f2 is slightly faster than f1. import numpy as np arr = np.random.choice(['a','b'...
0.53
t3_tfbvh6
1,647,415,266
Python
Approach H2kinfosys to Learn Python Course Effectively
This [**python certification online**](https://www.h2kinfosys.com/courses/python-online-training) course is created for complete beginners, so you don't need any prior programming experience to complete it. The outline is designed to cover the basics of the programming language as well as some advanced topics.
0.67
t3_tfbsr5
1,647,414,945
Python
macOS 12.3 finally deletes its own Python 2, which even die-hard Python fans applaud
0.96
t3_tfbgoe
1,647,413,504
Python
Tool to get path to JSON in python format
I found a tool that you can paste JSON into, provide the key to look for, and the value expected for the key (partial values works too). The result is the path to the value. Wanted to share as I found this useful. https://xenosoftwaresolutions.com/json sample JSON: { "test": [ ...
0.78
t3_tf6b85
1,647,395,272
Python
Wednesday Daily Thread: Beginner questions
New to Python and have questions? Use this thread to ask anything about Python, there are no bad questions! This thread may be fairly low volume in replies, if you don't receive a response we recommend looking at r/LearnPython or joining the Python Discord server at [https://discord.gg/python](https://discord.gg/pytho...
0.67
t3_tf45nb
1,647,388,810
Python
Approximate Pi with 7 lines of code (arctangent series)
[https://www.youtube.com/watch?v=h63eSCNtJLg](https://www.youtube.com/watch?v=h63eSCNtJLg)
0.58
t3_tf2yrl
1,647,385,408
Python
Article: Build a webhook in Python to interact with GitLab.
0.79
t3_tf1c39
1,647,380,997
Python
Which is more Pythonic?
if event_region in match regions: return True else: return False` Or... `Return True if event_region in match_regions else False` Or... `return event_region in match_regions` Where "event_region" is a string and "match_regions" is a list of strings
0.87
t3_tezqe5
1,647,376,725
Python
Django Email Signals - Django App that Actually Solves a Business Problem
In my workplace we make a lot of Django apps and for a number of these Django apps, we configure a lots of emails to be sent. Whenever something changes in the database that meets some condition we send an email. The emails have their own context and each email can be a time consuming to setup. There has to be a bett...
1
t3_teyws8
1,647,374,670
Python
Introducing Typesplainer: a python type-hint explainer
## What Typesplainer is a Python type hint explainer that explains python type hints in plain English. It is very fast, accurate, and easy to use and understand. Available as a CLI, on the web, and as a Visual Studio Code extension ## Where Website: https://typesplainer.herokuapp.com/\ CLI: https://pypi.org/project/...
0.84
t3_tevyc4
1,647,368,487
Python
Demystifying Apache Arrow: what is it and when should you use it?
0.91
t3_tettmu
1,647,363,875
Python
Python Web Frameworks
0.67
t3_tehw7k
1,647,322,911
Python
The Boilerplate for Logging in Python
## Use this logging template in your next big project Finding bugs is a common problem in any programming project. To make it easier to find bugs, you probably want to write some print statements to help you debug. Is it helpful? yes. Is it the right way to track events in your code, especially in a big project? no. ...
1
t3_terbh0
1,647,357,423
Python
Python vs SQL for Data Analysis: comparing performance, functionality and dev XP
The clean division of data analysis labor between Python and SQL seems to be fading with tools like dbt, Snowpark and dask-sql. The article shared below compares the two languages in terms of performance, functionality and developer XP. Quick summary: **Performance** Running SQL code on data warehouses is generall...
0.69
t3_tequ97
1,647,356,144
Python
Use Python to Transcribe an Audio File in an S3 Bucket in 3 Steps
Hey guys! I wrote a [mini-article](https://www.assemblyai.com/blog/transcribing-audio-files-in-an-s3-bucket-with-assemblyai/) on **how to transcribe an audio file in an S3 bucket in 3 simple steps**. Figured it might be helpful for people learning to use Python, JSON, AWS, etc.!
0.95
t3_teqkc2
1,647,355,373
Python
Processing large JSON files in Python without running out memory
nan
0.95
t3_tepn58
1,647,352,799
Python
Python Class Constructors: Control Your Object Instantiation – Real Python
nan
0.67
t3_teozl2
1,647,350,835