@ -2,10 +2,12 @@ import pandas as pd
from swarms import dataframe_to_text
# # Example usage:
df = pd.DataFrame({
df = pd.DataFrame(
'A': [1, 2, 3],
{
'B': [4, 5, 6],
"A": [1, 2, 3],
'C': [7, 8, 9],
"B": [4, 5, 6],
})
"C": [7, 8, 9],
}
)
print(dataframe_to_text(df))
@ -37,4 +37,6 @@ def check_for_update():
# Get the current version using pkg_resources
current_version = pkg_version("swarms")
return version.parse(latest_version) > version.parse(current_version)
return version.parse(latest_version) > version.parse(
current_version