This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
freecodecamp-projects/9-data-analysis-python/4-page-view-time-series-visualizer/main.py

11 lines
362 B
Python
Raw Normal View History

2022-12-03 16:20:48 +00:00
# This entrypoint file to be used in development. Start by reading README.md
import time_series_visualizer
from unittest import main
# Test your function by calling it here
time_series_visualizer.draw_line_plot()
time_series_visualizer.draw_bar_plot()
time_series_visualizer.draw_box_plot()
# Run unit tests automatically
main(module='test_module', exit=False)