Dataset Viewer
Auto-converted to Parquet Duplicate
index
int64
0
0
repo_id
stringclasses
5 values
file_path
stringlengths
29
58
content
stringlengths
60
665k
__index_level_0__
int64
0
0
0
Chart\Chart
Chart\Chart\backend\manage.py
#!/usr/bin/env python """Django's command-line utility for administrative tasks.""" import os import sys def main(): """Run administrative tasks.""" os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'lsg.settings') try: from django.core.management import execute_from_command_line except ImportEr...
0
0
Chart\Chart\backend\api\management
Chart\Chart\backend\api\management\commands\load_stocks.py
import random from datetime import datetime, timedelta from django.core.management.base import BaseCommand from django.db import transaction from django.utils import timezone from datetime import timezone as dt_timezone from api.models import Item class Command(BaseCommand): help = "Populate Item table with sto...
0
0
Chart\Chart\backend
Chart\Chart\backend\lsg\asgi.py
""" ASGI config for lsg project. It exposes the ASGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/5.2/howto/deployment/asgi/ """ import os from django.core.asgi import get_asgi_application os.environ.setdefault('DJANGO_SETTINGS_...
0
0
Chart\Chart\backend
Chart\Chart\backend\lsg\settings.py
""" Django settings for lsg project. Generated by 'django-admin startproject' using Django 5.2.1. For more information on this file, see https://docs.djangoproject.com/en/5.2/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/5.2/ref/settings/ """ from pathlib imp...
0
0
Chart\Chart\backend
Chart\Chart\backend\lsg\urls.py
from django.contrib import admin from django.urls import path, include urlpatterns = [ path('admin/', admin.site.urls), path('api/', include('api.urls')), ]
0
0
Chart\Chart\backend
Chart\Chart\backend\lsg\wsgi.py
""" WSGI config for lsg project. It exposes the WSGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/5.2/howto/deployment/wsgi/ """ import os from django.core.wsgi import get_wsgi_application os.environ.setdefault('DJANGO_SETTINGS_...
0
0
Chart\Chart
Chart\Chart\frontend\package-lock.json
"{\n \"name\": \"frontend\",\n \"version\": \"0.1.0\",\n \"lockfileVersion\": 3,\n \"requires\":(...TRUNCATED)
0
0
Chart\Chart
Chart\Chart\frontend\package.json
"{\n \"proxy\": \"http://localhost:8000\",\n \"name\": \"frontend\",\n \"version\": \"0.1.0\",\n (...TRUNCATED)
0
0
Chart\Chart
Chart\Chart\frontend\README.md
"# Getting Started with Create React App\n\nThis project was bootstrapped with [Create React App](ht(...TRUNCATED)
0
0
Chart\Chart\frontend
Chart\Chart\frontend\public\index.html
"<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\" />\n <link rel=\"icon(...TRUNCATED)
0
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
3