diff --git a/.gitignore b/.gitignore index 369686f3396783f23ae64507f958331d36592f37..314f02b1bc5939ebb5b1a48c139fd5e56daf9667 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1 @@ -*.py -*.json *.txt \ No newline at end of file diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000000000000000000000000000000000000..837e898018d68d1a851459188a5751d230afd8e9 --- /dev/null +++ b/src/main.py @@ -0,0 +1,20 @@ +import imp + + +import os +import pandas as pd + +config = { + "csdn_trends": { + "file": "CSDN 指数.xlsx", + "desc": "开源博客项目在CSDN站内词频数据" + } +} + + +def main(): + pass + + +if __name__ == "__main__": + main()