publish_news_item.py 138 B

123456
  1. import model
  2. from model import cleanup
  3. if __name__ == '__main__':
  4. print(model.new_news(input('Message of the news:')))
  5. cleanup()