{"id":16463603,"url":"https://github.com/accraze/python-ia-markov","last_synced_at":"2025-03-23T10:34:26.174Z","repository":{"id":57437743,"uuid":"74922808","full_name":"accraze/python-ia-markov","owner":"accraze","description":"Train Markov models on Internet Archive text files.","archived":false,"fork":false,"pushed_at":"2019-04-07T01:13:42.000Z","size":65,"stargazers_count":8,"open_issues_count":5,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-11T11:53:28.683Z","etag":null,"topics":["markov-chain","markov-model","markov-text","nlp","text-generation","text-generator"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/ia-markov/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/accraze.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-11-28T00:19:42.000Z","updated_at":"2022-12-09T18:56:21.000Z","dependencies_parsed_at":"2022-09-15T11:20:42.305Z","dependency_job_id":null,"html_url":"https://github.com/accraze/python-ia-markov","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accraze%2Fpython-ia-markov","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accraze%2Fpython-ia-markov/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accraze%2Fpython-ia-markov/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accraze%2Fpython-ia-markov/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/accraze","download_url":"https://codeload.github.com/accraze/python-ia-markov/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221849592,"owners_count":16891496,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["markov-chain","markov-model","markov-text","nlp","text-generation","text-generator"],"created_at":"2024-10-11T11:14:56.158Z","updated_at":"2024-10-28T15:37:42.138Z","avatar_url":"https://github.com/accraze.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"========\nOverview\n========\n\n.. start-badges\n\n.. list-table::\n    :stub-columns: 1\n\n    * - docs\n      - |docs|\n    * - tests\n      - | |travis| |requires|\n        | |coveralls| |codecov|\n    * - package\n      - |version| |wheel| |supported-versions| |supported-implementations|\n\n.. |docs| image:: https://readthedocs.org/projects/python-ia-markov/badge/?style=flat\n    :target: https://readthedocs.org/projects/python-ia-markov\n    :alt: Documentation Status\n\n.. |travis| image:: https://travis-ci.org/accraze/python-ia-markov.svg?branch=master\n    :alt: Travis-CI Build Status\n    :target: https://travis-ci.org/accraze/python-ia-markov\n\n.. |requires| image:: https://requires.io/github/accraze/python-ia-markov/requirements.svg?branch=master\n    :alt: Requirements Status\n    :target: https://requires.io/github/accraze/python-ia-markov/requirements/?branch=master\n\n.. |coveralls| image:: https://coveralls.io/repos/accraze/python-ia-markov/badge.svg?branch=master\u0026service=github\n    :alt: Coverage Status\n    :target: https://coveralls.io/r/accraze/python-ia-markov\n\n.. |codecov| image:: https://codecov.io/github/accraze/python-ia-markov/coverage.svg?branch=master\n    :alt: Coverage Status\n    :target: https://codecov.io/github/accraze/python-ia-markov\n\n.. |version| image:: https://img.shields.io/pypi/v/ia-markov.svg?style=flat\n    :alt: PyPI Package latest release\n    :target: https://pypi.python.org/pypi/ia-markov\n\n.. |downloads| image:: https://img.shields.io/pypi/dm/ia-markov.svg?style=flat\n    :alt: PyPI Package monthly downloads\n    :target: https://pypi.python.org/pypi/ia-markov\n\n.. |wheel| image:: https://img.shields.io/pypi/wheel/ia-markov.svg?style=flat\n    :alt: PyPI Wheel\n    :target: https://pypi.python.org/pypi/ia-markov\n\n.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/ia-markov.svg?style=flat\n    :alt: Supported versions\n    :target: https://pypi.python.org/pypi/ia-markov\n\n.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/ia-markov.svg?style=flat\n    :alt: Supported implementations\n    :target: https://pypi.python.org/pypi/ia-markov\n\n\n.. end-badges\n\nCreate Markov models trained on Internet Archive text files.\n\n* Free software: BSD license\n\nInstallation\n============\n\n::\n\n    pip install ia-markov\n\nQuick Start\n===========\n\n::\n\n    from ia_markov import MarkovModel\n\n    m = MarkovModel()\n    m.train_model('FuturistManifesto')\n    m.model.make_sentence()\n    'Courage, audacity, and revolt will be drunk with love and admiration for us.'\n\n\nDocumentation\n=============\n\nhttps://python-ia-markov.readthedocs.io/\n\nDevelopment\n===========\n\nTo run the all tests run::\n\n    tox\n\nNote, to combine the coverage data from all the tox environments run:\n\n.. list-table::\n    :widths: 10 90\n    :stub-columns: 1\n\n    - - Windows\n      - ::\n\n            set PYTEST_ADDOPTS=--cov-append\n            tox\n\n    - - Other\n      - ::\n\n            PYTEST_ADDOPTS=--cov-append tox\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccraze%2Fpython-ia-markov","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faccraze%2Fpython-ia-markov","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccraze%2Fpython-ia-markov/lists"}