Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (23 loc) · 1.09 KB

README.md

File metadata and controls

30 lines (23 loc) · 1.09 KB

python-samp

Python library for interfacing with San Andreas Multiplayer using memory

GitHub repo size GitHub issues by-label

Installation

You can install the latest version with the command:

pip install -U https://github.com/rmdlv/python-samp/archive/refs/heads/main.zip

Example

from python_samp import SAMP, API

samp = SAMP()
api = API(samp)

username = api.get_username()
api.send_chat(f"My name is {username}")
samp.close()

Contributing

Pull requests are supported! Before creating a pull request, read CONTRIBUTING.md. We are pleased to see your contribution to the development of the library. Ask questions in the Issues section and in Telegram chat!

License

Copyright © 2021 rmdlv.
This project has a MIT license.