Last active
September 12, 2023 08:12
-
-
Save xiang578/4ecf9f821dc492bf27302e78c621ef31 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import sys | |
if __name__ == '__main__': | |
df = pd.read_csv(sys.argv[1]) | |
new = df[['Start time', 'End time', 'Description', 'Project', 'Duration']] | |
new.to_html('time_entries.html') | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment