معرفی شرکت ها


dathostpython-1.3.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A python wrapper for the Dathost API
ویژگی مقدار
سیستم عامل -
نام فایل dathostpython-1.3.4
نام dathostpython
نسخه کتابخانه 1.3.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Miles Budden
ایمیل نویسنده miles@budden.net
آدرس صفحه اصلی https://github.com/pbexe/dathost-python
آدرس اینترنتی https://pypi.org/project/dathostpython/
مجوز UNKNOWN
Dathost-python ============== .. image:: https://img.shields.io/github/issues/pbexe/dathost-python.svg :target: https://github.com/pbexe/dathost-python/issues .. image:: https://badge.fury.io/py/dathostpython.svg :target: https://badge.fury.io/py/dathostpython .. image:: https://img.shields.io/pypi/dm/dathostpython.svg :target: https://pypi.python.org/pypi?name=dathostpython&:action=display This is a python wrapper for the dathost API. Installation ------------ .. code:: python pip3 install dathostpython Basic usage ----------- .. code:: python from dathostpython.wrapper import dathost dathost = dathost("email", "password") # List servers and all their details print(dathost.servers()) # Start a server dathost.start("server id") # Stop a server dathost.stop("server id") # Duplicate a server dathost.duplicate("server id") # Duplicate a server and print its id print(dathost.duplicate("server id")["id"]) # Delete a server dathost.delete("server id") # Retrieve a file from the server dathost.getFile("server id", "path/to/file.txt") # Retrieve info on a server print(dathost.info("server id")) # Edit a server value # Multiple values can be passed, for example: # dathost.edit("570e1dadcde5f5xxxxxxxxxx", csgo_settings__rcon = "Bob", name = "Bob") # # Note: # For parameters with "." in them, replace the "." with "__". # A full list of parameters can be found at https://dathost.net/api#!/default/put_game_server_item dathost.edit("server id", parameter = "value" ) # List files in a directory # The final 2 parameters (Hide default files and show file sizes) are optional dathost.files("server id", "path/to/dir/", True, True) # Sync the files between the local cache and the gameserver dathost.sync("server id")


نحوه نصب


نصب پکیج whl dathostpython-1.3.4:

    pip install dathostpython-1.3.4.whl


نصب پکیج tar.gz dathostpython-1.3.4:

    pip install dathostpython-1.3.4.tar.gz