pull/388/head
Wyatt Stanke 1 year ago
parent 81c091fac3
commit b44ca7919d
No known key found for this signature in database
GPG Key ID: CE6BA5FFF135536D

@ -2,10 +2,12 @@ import pandas as pd
from swarms import dataframe_to_text from swarms import dataframe_to_text
# # Example usage: # # 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)) print(dataframe_to_text(df))

@ -37,4 +37,6 @@ def check_for_update():
# Get the current version using pkg_resources # Get the current version using pkg_resources
current_version = pkg_version("swarms") current_version = pkg_version("swarms")
return version.parse(latest_version) > version.parse(current_version) return version.parse(latest_version) > version.parse(
current_version
)

Loading…
Cancel
Save