Mearthy
Mearthy
WWindmill
Created by Mearthy on 2/20/2024 in #help
Help with Base64 - python - polars column Names
Okay I was just overthinking things. Thank you so much
4 replies
WWindmill
Created by Mearthy on 2/20/2024 in #help
Help with Base64 - python - polars column Names
Test-Code
import base64
import polars as pl

def main(base_str):
base64_string = base_str
sample_string_bytes = base64.b64decode(base64_string)
#return sample_string_bytes.decode()
return pl.read_csv(sample_string_bytes)
import base64
import polars as pl

def main(base_str):
base64_string = base_str
sample_string_bytes = base64.b64decode(base64_string)
#return sample_string_bytes.decode()
return pl.read_csv(sample_string_bytes)
4 replies