biliarchiver

(★ 48)

Use bilix to archive BiliBili video with metadata and danmaku.

파일 탐색기

  • .gitattributes
  • .gitignore
  • bilibili-archive-checker.user.js
  • build.py
  • LICENSE
  • poetry.lock
  • pyproject.toml
  • README.md
  • requirements.txt

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

msgfmt

설명 보기 ▼

메시지 카탈로그를 바이너리 형식으로 컴파일.
더 많은 정보: <https://www.gnu.org/software/gettext/manual/gettext.html#msgfmt-Invocation>.

msgfmt {{file.po}}

`.po` 파일을 `.mo` 파일로 변환:

msgfmt {{path/to/file.po}} {{[-o|--output-file]}} {{path/to/file.mo}}

Convert a `.po` file to a `.mo` file:

msgfmt {{[-h|--help]}}

Display help:

🔍

msginit

설명 보기 ▼

Portable Object Template 파일을 기반으로 언어별 번역 파일 생성.
더 많은 정보: <https://www.gnu.org/software/gettext/manual/gettext.html#msginit-Invocation>.

msginit

시스템 로케일을 사용하여 `messages.pot` 로부터 Portable Object 파일 생성:

msginit {{[-l|--locale]}} {{locale}} {{[-i|--input]}} {{path/to/messages.pot}}

특정 로케일에 대한 번역 파일을 특정 템플릿으로부터 생성:

msginit {{[-h|--help]}}

도움말 표시:

🔍

msgmerge

설명 보기 ▼

새로운 번역 템플릿을 기반으로 기존 번역 파일 업데이트.
더 많은 정보: <https://www.gnu.org/software/gettext/manual/gettext.html#msgmerge-Invocation>.

msgmerge {{[-U|--update]}} {{path/to/file.po}} {{path/to/messages.pot}}

번역 파일 업데이트:

msgmerge {{[-h|--help]}}

도움말 표시:

🔍

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:

🔍

poetry install

설명 보기 ▼

Install all dependencies for a Python project as defined in the pyproject.toml file.

poetry install

Install dependencies:

poetry install --no-root

Skip installing the project itself as a dependency:

poetry install --without dev

Install only production dependencies:

🔍

poetry run

설명 보기 ▼

Run a command in the project's virtual environment.

poetry run {{command}}

Run a command inside the virtual environment:

poetry run {{command}} {{argument1 argument2 ...}}

Run a command with arguments:

poetry run {{script_name}}

Run a script defined in `pyproject.toml`:

🔍

poetry

설명 보기 ▼

Python 패키지 및 의존성을 관리.
관련 항목: `asdf`, `pipenv`, `hatch`.
더 많은 정보: <https://python-poetry.org/docs/cli/>.

poetry new {{project_name}}

특정 이름으로 디렉토리에 새 Poetry 프로젝트 생성:

poetry add {{dependency}}

현재 디렉토리의 `pyproject.toml` 파일에 의존성과 그 하위 의존성 설치 및 추가:

poetry install

현재 디렉토리의 `pyproject.toml` 파일을 사용하여 프로젝트 의존성 설치:

// repository documentation