Initial project structure created by ProjectInitializerTool
This commit is contained in:
commit
6c26d0287a
150
.gitignore
vendored
Normal file
150
.gitignore
vendored
Normal file
@ -0,0 +1,150 @@
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
pip-wheel-metadata/
|
||||
share/python-wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
# PyInstaller
|
||||
# Usually these files are written by a CI server in a temp folder.
|
||||
# Then everything is copied to shipping folder during release.
|
||||
*.spec
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
*.py,cover
|
||||
.hypothesis/
|
||||
.pytest_cache/
|
||||
|
||||
# Translations
|
||||
*.mo
|
||||
*.pot
|
||||
|
||||
# Django stuff:
|
||||
*.log
|
||||
local_settings.py
|
||||
db.sqlite3
|
||||
db.sqlite3-journal
|
||||
|
||||
# Flask stuff:
|
||||
instance/
|
||||
.webassets-cache
|
||||
|
||||
# Scrapy stuff:
|
||||
.scrapy
|
||||
|
||||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
# PyBuilder
|
||||
target/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# IPython
|
||||
profile_default/
|
||||
ipython_config.py
|
||||
|
||||
# pyenv
|
||||
.python-version
|
||||
|
||||
# PEP 582; __pypackages__
|
||||
__pypackages__/
|
||||
|
||||
# PEP 621; pyproject.toml sections
|
||||
.pdm.toml
|
||||
.pdm.lock
|
||||
# .venv
|
||||
|
||||
# Celery stuff
|
||||
celerybeat-schedule
|
||||
celerybeat.pid
|
||||
|
||||
# SageMath parsed files
|
||||
*.sage.py
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
|
||||
# Spyder project settings
|
||||
.spyderproject
|
||||
.spyproject
|
||||
|
||||
# Rope project settings
|
||||
.ropeproject
|
||||
|
||||
# mkdocs documentation
|
||||
/site
|
||||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
# static analysis tool
|
||||
.flake8
|
||||
|
||||
# VS Code
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
.history/
|
||||
|
||||
# sublime
|
||||
*.sublime-workspace
|
||||
*.sublime-project
|
||||
|
||||
# Kate
|
||||
.kateproject
|
||||
.kateproject.lock
|
||||
.katenewfile. Neuen Filenamensvorschlag merken.
|
||||
|
||||
# Temporary files
|
||||
*.swp
|
||||
*~
|
||||
0
DownloaderYouTube.ico
Normal file
0
DownloaderYouTube.ico
Normal file
16
README.md
Normal file
16
README.md
Normal file
@ -0,0 +1,16 @@
|
||||
# DownloaderYouTube
|
||||
|
||||
A brief description of DownloaderYouTube.
|
||||
|
||||
## Features
|
||||
- Feature 1
|
||||
- Feature 2
|
||||
|
||||
## Getting Started
|
||||
...
|
||||
|
||||
## Contributing
|
||||
...
|
||||
|
||||
## License
|
||||
...
|
||||
24
doc/English-manual.md
Normal file
24
doc/English-manual.md
Normal file
@ -0,0 +1,24 @@
|
||||
# DownloaderYouTube - English Manual
|
||||
|
||||
## Introduction
|
||||
Welcome to DownloaderYouTube. This document provides an overview of how to install, use, and understand the project.
|
||||
|
||||
## Installation
|
||||
Describe the installation steps here. For example:
|
||||
1. Clone the repository: `git clone <repository_url>`
|
||||
2. Navigate to the project directory: `cd DownloaderYouTube`
|
||||
3. Install dependencies: `pip install -r requirements.txt` (if applicable)
|
||||
|
||||
## Usage
|
||||
Explain how to run and use the application.
|
||||
- To run the application: `python -m downloaderyoutube`
|
||||
- Command-line arguments (if any).
|
||||
- GUI interaction (if any).
|
||||
|
||||
## Development
|
||||
Information for developers contributing to the project.
|
||||
- Code structure.
|
||||
- How to run tests.
|
||||
|
||||
## Troubleshooting
|
||||
Common issues and their solutions.
|
||||
24
doc/Italian-manual.md
Normal file
24
doc/Italian-manual.md
Normal file
@ -0,0 +1,24 @@
|
||||
# DownloaderYouTube - Manuale Italiano
|
||||
|
||||
## Introduzione
|
||||
Benvenuto in DownloaderYouTube. Questo documento fornisce una panoramica su come installare, utilizzare e comprendere il progetto.
|
||||
|
||||
## Installazione
|
||||
Descrivi i passaggi di installazione qui. Ad esempio:
|
||||
1. Clona il repository: `git clone <repository_url>`
|
||||
2. Naviga nella directory del progetto: `cd DownloaderYouTube`
|
||||
3. Installa le dipendenze: `pip install -r requirements.txt` (se applicabile)
|
||||
|
||||
## Utilizzo
|
||||
Spiega come eseguire e utilizzare l'applicazione.
|
||||
- Per eseguire l'applicazione: `python -m downloaderyoutube`
|
||||
- Argomenti da riga di comando (se presenti).
|
||||
- Interazione con la GUI (se presente).
|
||||
|
||||
## Sviluppo
|
||||
Informazioni per gli sviluppatori che contribuiscono al progetto.
|
||||
- Struttura del codice.
|
||||
- Come eseguire i test.
|
||||
|
||||
## Risoluzione dei problemi
|
||||
Problemi comuni e relative soluzioni.
|
||||
0
downloaderyoutube/__init__.py
Normal file
0
downloaderyoutube/__init__.py
Normal file
17
downloaderyoutube/__main__.py
Normal file
17
downloaderyoutube/__main__.py
Normal file
@ -0,0 +1,17 @@
|
||||
# downloaderyoutube/__main__.py
|
||||
|
||||
# Example import assuming your main logic is in a 'main' function
|
||||
# within a 'app' module in your 'downloaderyoutube.core' package.
|
||||
# from downloaderyoutube.core.app import main as start_application
|
||||
#
|
||||
# Or, if you have a function in downloaderyoutube.core.core:
|
||||
# from downloaderyoutube.core.core import main_function
|
||||
|
||||
def main():
|
||||
print(f"Running DownloaderYouTube...")
|
||||
# Placeholder: Replace with your application's entry point
|
||||
# Example: start_application()
|
||||
print("To customize, edit 'downloaderyoutube/__main__.py' and your core modules.")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
0
downloaderyoutube/core/__init__.py
Normal file
0
downloaderyoutube/core/__init__.py
Normal file
0
downloaderyoutube/core/core.py
Normal file
0
downloaderyoutube/core/core.py
Normal file
0
downloaderyoutube/gui/__init__.py
Normal file
0
downloaderyoutube/gui/__init__.py
Normal file
0
downloaderyoutube/gui/gui.py
Normal file
0
downloaderyoutube/gui/gui.py
Normal file
Loading…
Reference in New Issue
Block a user