A Geometry Dash API wrapper for Python
Project description
gd.py is a library that provides its users ability to interact with servers of Geometry Dash.
Key Features
Modern Pythonic API
High coverage of the supported Geometry Dash API
Using async and await syntax
Installing
Python 3.5.3 or higher is required
To install the library, you can just run the following command:
# Linux/OS X
python3 -m pip install -U gd.py
# Windows
py -3 -m pip install -U gd.py
To install the developer version, run these commands:
$ git clone https://github.com/NeKitDS/gd.py
$ cd gd.py
$ python3 -m pip install -U .
Quick example
import gd
client = gd.Client()
async def test():
song = await client.get_song(633206)
print(song.name)
client.run(test())
# OUTPUT: Random Song 01
You can find more examples in examples directory.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gd.py-0.9.0a2.tar.gz
(3.2 MB
view hashes)