subtitlecore


Namesubtitlecore JSON
Version 0.1.14 PyPI version JSON
download
home_pagehttps://github.com/qishe-nlp/subtitlecore
SummaryParse srt file content into well-formed structures
upload_time2023-10-20 13:14:37
maintainer
docs_urlNone
authorPhoenix.Grey
requires_python>=3.8,<4.0
license
keywords subtitle parse srt
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Installation from pip3

```shell
pip3 install --verbose subtitlecore
python -m spacy download en_core_web_trf
python -m spacy download es_dep_news_trf
```

# Usage

Please refer to [api docs](https://qishe-nlp.github.io/subtitlecore/).

### Excutable usage

* Get subtitle content

```shell
subtitlecore_content --srtfile test.srt --lang en
``` 

* Parse srtfile into sentences with timestamp

```shell
subtitlecore_parse2sens --srtfile test.srt --lang en
```

* Parse srtfile into plain text
```shell
subtitlecore_parse2text --srtfile test.srt --lang en
```

### Package usage
```
from subtitlecore import Subtitle

def get_subtitle_content(srtfile, lang):
  st = Subtitle(srtfile, lang)
  for line_info in st.content:
    print(line_info)

def parse2sens(srtfile, lang):
  st = Subtitle(srtfile, lang)
  content_sens = st.sentenize()
  for e in content_sens:
    print(e)

def parse2text(srtfile, lang):
  st = Subtitle(srtfile, lang)
  text = st.plaintext()
  print(text)
```

# Development

### Clone project
```
git clone https://github.com/qishe-nlp/subtitlecore.git
```

### Install [poetry](https://python-poetry.org/docs/)

### Install dependencies
```
poetry update
```

### Test
```
poetry run pytest -rP
```
which run tests under `tests/*`

### Execute
```
poetry run subtitlecore_content --help
poetry run subtitlecore_parse2sens --help
poetry run subtitlecore_parse2text --help
```

### Create sphinx docs
```
poetry shell
cd apidocs
sphinx-apidoc -f -o source ../subtitlecore
make html
python -m http.server -d build/html
```

### Host docs on github pages
```
cp -rf apidocs/build/html/* docs/
```

### Build
* Change `version` in `pyproject.toml` and `subtitlecore/__init__.py`
* Build python package by `poetry build`

### Git commit and push

### Publish from local dev env
* Set pypi test environment variables in poetry, refer to [poetry doc](https://python-poetry.org/docs/repositories/)
* Publish to pypi test by `poetry publish -r test`

### Publish through CI 

* Github action build and publish package to [test pypi repo](https://test.pypi.org/)

```
git tag [x.x.x]
git push origin master
```

* Manually publish to [pypi repo](https://pypi.org/) through [github action](https://github.com/qishe-nlp/subtitlecore/actions/workflows/pypi.yml)


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/qishe-nlp/subtitlecore",
    "name": "subtitlecore",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "subtitle,parse,srt",
    "author": "Phoenix.Grey",
    "author_email": "phoenix.grey0108@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/af/3d/25215bf3dfc322169062f3256a2b6bede7101269b883be32d7d1487064e1/subtitlecore-0.1.14.tar.gz",
    "platform": null,
    "description": "# Installation from pip3\n\n```shell\npip3 install --verbose subtitlecore\npython -m spacy download en_core_web_trf\npython -m spacy download es_dep_news_trf\n```\n\n# Usage\n\nPlease refer to [api docs](https://qishe-nlp.github.io/subtitlecore/).\n\n### Excutable usage\n\n* Get subtitle content\n\n```shell\nsubtitlecore_content --srtfile test.srt --lang en\n``` \n\n* Parse srtfile into sentences with timestamp\n\n```shell\nsubtitlecore_parse2sens --srtfile test.srt --lang en\n```\n\n* Parse srtfile into plain text\n```shell\nsubtitlecore_parse2text --srtfile test.srt --lang en\n```\n\n### Package usage\n```\nfrom subtitlecore import Subtitle\n\ndef get_subtitle_content(srtfile, lang):\n  st = Subtitle(srtfile, lang)\n  for line_info in st.content:\n    print(line_info)\n\ndef parse2sens(srtfile, lang):\n  st = Subtitle(srtfile, lang)\n  content_sens = st.sentenize()\n  for e in content_sens:\n    print(e)\n\ndef parse2text(srtfile, lang):\n  st = Subtitle(srtfile, lang)\n  text = st.plaintext()\n  print(text)\n```\n\n# Development\n\n### Clone project\n```\ngit clone https://github.com/qishe-nlp/subtitlecore.git\n```\n\n### Install [poetry](https://python-poetry.org/docs/)\n\n### Install dependencies\n```\npoetry update\n```\n\n### Test\n```\npoetry run pytest -rP\n```\nwhich run tests under `tests/*`\n\n### Execute\n```\npoetry run subtitlecore_content --help\npoetry run subtitlecore_parse2sens --help\npoetry run subtitlecore_parse2text --help\n```\n\n### Create sphinx docs\n```\npoetry shell\ncd apidocs\nsphinx-apidoc -f -o source ../subtitlecore\nmake html\npython -m http.server -d build/html\n```\n\n### Host docs on github pages\n```\ncp -rf apidocs/build/html/* docs/\n```\n\n### Build\n* Change `version` in `pyproject.toml` and `subtitlecore/__init__.py`\n* Build python package by `poetry build`\n\n### Git commit and push\n\n### Publish from local dev env\n* Set pypi test environment variables in poetry, refer to [poetry doc](https://python-poetry.org/docs/repositories/)\n* Publish to pypi test by `poetry publish -r test`\n\n### Publish through CI \n\n* Github action build and publish package to [test pypi repo](https://test.pypi.org/)\n\n```\ngit tag [x.x.x]\ngit push origin master\n```\n\n* Manually publish to [pypi repo](https://pypi.org/) through [github action](https://github.com/qishe-nlp/subtitlecore/actions/workflows/pypi.yml)\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Parse srt file content into well-formed structures",
    "version": "0.1.14",
    "project_urls": {
        "Documentation": "https://qishe-nlp.github.io/subtitlecore/",
        "Homepage": "https://github.com/qishe-nlp/subtitlecore",
        "Repository": "https://github.com/qishe-nlp/subtitlecore"
    },
    "split_keywords": [
        "subtitle",
        "parse",
        "srt"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54d5ef4ef1024684b99283656528bee6494ce147079fbb94a8b406ddfb51660f",
                "md5": "0f0f8ee0c4cb628d5beb6ac24eb82516",
                "sha256": "a0ff89f0b96645251ec1d2aed7175693ec328307e23fcac66b9b4fc6fe8eee9f"
            },
            "downloads": -1,
            "filename": "subtitlecore-0.1.14-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0f0f8ee0c4cb628d5beb6ac24eb82516",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 5193,
            "upload_time": "2023-10-20T13:14:36",
            "upload_time_iso_8601": "2023-10-20T13:14:36.661097Z",
            "url": "https://files.pythonhosted.org/packages/54/d5/ef4ef1024684b99283656528bee6494ce147079fbb94a8b406ddfb51660f/subtitlecore-0.1.14-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af3d25215bf3dfc322169062f3256a2b6bede7101269b883be32d7d1487064e1",
                "md5": "1cafd27a6d7fbac09b1af23781324984",
                "sha256": "214e3f19b663a1b461e7dc504d390472d9358a80cd03a948a73cb4c6c43c0750"
            },
            "downloads": -1,
            "filename": "subtitlecore-0.1.14.tar.gz",
            "has_sig": false,
            "md5_digest": "1cafd27a6d7fbac09b1af23781324984",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 3537,
            "upload_time": "2023-10-20T13:14:37",
            "upload_time_iso_8601": "2023-10-20T13:14:37.813208Z",
            "url": "https://files.pythonhosted.org/packages/af/3d/25215bf3dfc322169062f3256a2b6bede7101269b883be32d7d1487064e1/subtitlecore-0.1.14.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-20 13:14:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "qishe-nlp",
    "github_project": "subtitlecore",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "subtitlecore"
}
        
Elapsed time: 0.12855s