Explain Codes LogoExplain Codes Logo

Python

How do you access the query string in Flask routes?

python
prompt-engineering
functions
response-objects

Filter dataframe rows if value in column matches a set list of values

python
dataframe
filtering
performance

How to sort a DataFrame in python pandas by two or more columns?

python
dataframe
sort-values
pandas

How to get/set a pandas index column title or name?

python
dataframe
rename_axis
index-attributes

Is there a Python equivalent of the C# null-coalescing operator?

python
null-coalescing
python-idioms
best-practices

Django: How do I add arbitrary html attributes to input fields on a form?

python
django
forms
widget-tweaks

Using logging in multiple modules

python
logging
configuration
best-practices

How do I find the location of my Python site-packages directory?

python
venv
pip
site-packages

Error after upgrading pip: cannot import name 'main'

python
virtual-environments
pip-upgrade
error-handling

How do you properly determine the current script directory?

python
pathlib
best-practices
filesystem

Add column to dataframe with constant value

python
dataframe
pandas
best-practices

Extracting specific selected columns to new DataFrame as a copy

python
dataframe
pandas
best-practices

Python list in SQL query as parameter

python
parameterization
sql-injection
sqlalchemy

Open S3 object as a string with Boto3

python
boto3
s3-object
memory-efficient

Get the last 4 characters of a string

python
string-slicing
python-features
substring-extraction

How do I clone a list so it doesn't change unexpectedly after assignment?

python
deepcopy
list-cloning
python-objects

How do you generate dynamic (parameterized) unit tests in Python?

python
pytest
unit-tests
parameterized-tests

Reading binary file and looping over each byte

python
performance
best-practices
memory-handling

How can I rename a conda environment?

python
conda
environment-management
renaming-environment

Django order_by query set, ascending and descending

python
django
queryset
ordering