LazyOwnInfiniteStorage

(★ 30)

LazyOwnInfiniteStorage es una herramienta para codificar y decodificar archivos en videos.

오너의 다른 레포

파일 탐색기

  • .gitignore
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • install.sh
  • KNOWLEDGE_BASE.md
  • lazyown_infinitestorage.py
  • LICENSE
  • README.md
  • render.yaml
  • requirements.txt
  • SECURITY.md
  • wsgi_app.py

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

gunicorn

설명 보기 ▼

Python WSGI HTTP 서버.
더 많은 정보: <https://docs.gunicorn.org/en/latest/run.html>.

gunicorn {{import.path:app_object}}

Python 웹 애플리케이션 실행:

gunicorn {{[-b|--bind]}} localhost:8080 {{import.path:app_object}}

localhost의 포트 8080에서 수신 대기:

gunicorn --reload {{import.path:app_object}}

실시간 새로고침을 켜기:

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

pytest

설명 보기 ▼

Python 테스트 실행.
더 많은 정보: <https://docs.pytest.org/en/latest/how-to/usage.html>.

pytest {{path/to/test_file1.py path/to/test_file2.py ...}}

특정 파일에서 테스트 실행:

pytest -k {{expression}}

특정 [k]eyword 표현식과 일치하는 테스트 실행:

pytest {{[-x|--exitfirst]}}

테스트가 실패하거나 오류가 발생하면 즉시 종료:

🔍

python

설명 보기 ▼

Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.

python

REPL(대화형 셸) 시작:

python {{path/to/file.py}}

특정 Python 파일 실행:

python -i {{path/to/file.py}}

특정 Python 파일 실행 후 REPL 시작:

// repository documentation