GitHub 中的 Telegram 机器人项目

Telegram bot project in GitHub

我正在制作一个数学机器人。来自 GitHub 的文件树:

/mathbot
  /funcionalidades
    __init__.py
    eq2grau.py (imported into config.py)
    primos.py  (imported into config.py)
    status.py  (still no use)
    trigonometria.py  (imported into config.py)
 README.md  (I will fill in later)
 bot.py 
 config.py  (imported into bot.py)
 requirements.txt

除了 README.mdrequirements.txt 之外,再放一个文件是否对我有好处,使它看起来更好,或者它已经很好了?

如果在 运行 pip install -r requirements.txt 和 运行 python bot.py 之后一切正常并且在你的自述文件中有描述,那应该是好的。

此外,对于 public 存储库,有时创建 Dockerfile 很有用,让其他人能够将您的程序作为容器化服务启动。

Here is a video tutorial for creating a Dockerfile for a Python program

此外,您可以将动态统计信息添加到 Github 自述文件中,使其看起来更专业:

Check out this Repository