forked from 20xd6/simple_blog_cms
Initial commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import csv
|
||||
|
||||
|
||||
def get_tags():
|
||||
user_tags = input("Please enter tags for the article separated by commas: ")
|
||||
csv_reader = csv.reader(user_tags)
|
||||
article_tags = [tuple(row) for row in csv_reader]
|
||||
Reference in New Issue
Block a user