CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
jackfrued

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: jackfrued/Python-100-Days
Path: blob/master/Day46-60/code/hellodjango/first/apps.py
Views: 729
1
from django.apps import AppConfig
2
3
4
class FirstConfig(AppConfig):
5
name = 'first'
6
7