Metadata-Version: 2.1
Name: acore-conf
Version: 0.1.1
Summary: Package short description.
Home-page: https://github.com/MacHu-GWU/acore_conf-project
Download-URL: https://pypi.python.org/pypi/acore_conf/0.1.1#downloads
Author: Sanhe Hu
Author-email: husanhe@gmail.com
Maintainer: Sanhe Hu
Maintainer-email: husanhe@gmail.com
License: MIT
Platform: Windows
Platform: MacOS
Platform: Unix
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Provides-Extra: tests
Provides-Extra: docs
License-File: LICENSE.txt
License-File: AUTHORS.rst


.. .. image:: https://readthedocs.org/projects/acore-conf/badge/?version=latest
    :target: https://acore-conf.readthedocs.io/en/latest/
    :alt: Documentation Status

.. image:: https://github.com/MacHu-GWU/acore_conf-project/workflows/CI/badge.svg
    :target: https://github.com/MacHu-GWU/acore_conf-project/actions?query=workflow:CI

.. image:: https://codecov.io/gh/MacHu-GWU/acore_conf-project/branch/main/graph/badge.svg
    :target: https://codecov.io/gh/MacHu-GWU/acore_conf-project

.. image:: https://img.shields.io/pypi/v/acore-conf.svg
    :target: https://pypi.python.org/pypi/acore-conf

.. image:: https://img.shields.io/pypi/l/acore-conf.svg
    :target: https://pypi.python.org/pypi/acore-conf

.. image:: https://img.shields.io/pypi/pyversions/acore-conf.svg
    :target: https://pypi.python.org/pypi/acore-conf

.. image:: https://img.shields.io/badge/Release_History!--None.svg?style=social
    :target: https://github.com/MacHu-GWU/acore_conf-project/blob/main/release-history.rst

.. image:: https://img.shields.io/badge/STAR_Me_on_GitHub!--None.svg?style=social
    :target: https://github.com/MacHu-GWU/acore_conf-project

------

.. .. image:: https://img.shields.io/badge/Link-Document-blue.svg
    :target: https://acore-conf.readthedocs.io/en/latest/

.. .. image:: https://img.shields.io/badge/Link-API-blue.svg
    :target: https://acore-conf.readthedocs.io/en/latest/py-modindex.html

.. image:: https://img.shields.io/badge/Link-Install-blue.svg
    :target: `install`_

.. image:: https://img.shields.io/badge/Link-GitHub-blue.svg
    :target: https://github.com/MacHu-GWU/acore_conf-project

.. image:: https://img.shields.io/badge/Link-Submit_Issue-blue.svg
    :target: https://github.com/MacHu-GWU/acore_conf-project/issues

.. image:: https://img.shields.io/badge/Link-Request_Feature-blue.svg
    :target: https://github.com/MacHu-GWU/acore_conf-project/issues

.. image:: https://img.shields.io/badge/Link-Download-blue.svg
    :target: https://pypi.org/pypi/acore-conf#files


Welcome to ``acore_conf`` Documentation
==============================================================================
**背景**

`AzerothCore <https://www.azerothcore.org/>`_ (acore) 是一个开源的魔兽世界模拟器, 其代码质量以及文档是目前 (2023 年) 我看来所有的开源魔兽世界模拟器中最好的. 它有一个 ``.conf`` 配置文件格式用于定义服务器的各种配置. 这个格式不是 acore 独有的, 而是所有的魔兽世界模拟器, 包括各个不同的资料片几乎都用的这个格式.

- `How configuration files are composed <https://www.azerothcore.org/wiki/how-to-work-with-conf-files>`_
- `authserver.conf <https://github.com/azerothcore/azerothcore-wotlk/blob/master/src/server/apps/authserver/authserver.conf.dist>`_
- `worldserver.conf <https://github.com/azerothcore/azerothcore-wotlk/blob/master/src/server/apps/worldserver/worldserver.conf.dist>`_

**关于本项目**

本项目是一个简单的 Python 工具, 用于管理, 修改 ``.conf`` 文件. 使得开发者可以用业内比较通用的 JSON 格式对 ``.conf`` 进行修改.

**用法**

.. code-block:: python

    from acore_conf.api import apply_changes

    apply_changes(
        "/path/to/authserver.conf.dist",
        "/path/to/authserver.conf",
        data={"worldserver": {"DataDir": "/home/azeroth-server/data"}},
    )


.. _install:

Install
------------------------------------------------------------------------------

``acore_conf`` is released on PyPI, so all you need is to:

.. code-block:: console

    $ pip install acore-conf

To upgrade to latest version:

.. code-block:: console

    $ pip install --upgrade acore-conf
