No project description provided
Project description
Roblox Account Launcher
This Python package provides a simple interface for launching Roblox games using an authenticated account. It includes functions to obtain necessary authentication tokens and launch a specified Roblox game.
Prerequisites
Before using this package, ensure that you have the following installed:
- Python 3
- Required Python packages:
requests pywin32
Usage
-
Import the
AccountLaunchclass from the package.from roblox_auth import AccountLaunch
-
Initialize an
AccountLaunchobject with the Roblox account's cookie and the target place ID.account_launcher = AccountLaunch(cookie="your_cookie_here", placeId="target_place_id")
-
Obtain the required authentication tokens.
xsrf_token = account_launcher.get_xsrf() authentication_ticket = account_launcher.get_authentication_ticket()
-
Retrieve the Job ID for the target game.
job_id = account_launcher.job_id()
-
Launch Roblox with the specified parameters.
launch_result = account_launcher.launch_roblox(ticket=authentication_ticket, job_id=job_id) print(launch_result)
Notes
- The package assumes that Roblox is installed in the default directory on Windows. If not, it attempts to find the installation path in the local AppData directory.
- Ensure that the required packages are installed using
pip install requests pywin32. - The package can run multiple instances.
Example
from roblox_auth import AccountLaunch
# Initialize AccountLaunch object
account_launcher = AccountLaunch(cookie="your_cookie_here", placeId="target_place_id")
# Get authentication tokens
xsrf_token = account_launcher.get_xsrf()
authentication_ticket = account_launcher.get_authentication_ticket()
# Get the Job ID
job_id = account_launcher.job_id()
# Launch Roblox
launch_result = account_launcher.launch_roblox(ticket=authentication_ticket, job_id=job_id)
print(launch_result)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file roblox_auth-0.3.4.tar.gz.
File metadata
- Download URL: roblox_auth-0.3.4.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
308490028beb433e9738f7c153160768f8ecae13ed8d979978ec12553179b361
|
|
| MD5 |
13207ddc6cb5f932106b5df16efe665f
|
|
| BLAKE2b-256 |
97b5f3165ce620befa7bfb13a53c5c635870d8df132fb8578025313ac7c77d81
|
File details
Details for the file roblox_auth-0.3.4-py3-none-any.whl.
File metadata
- Download URL: roblox_auth-0.3.4-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b3316869dadfaf6175106b98ca91b88654455d5bbab28d4ab6b78908fdc398e
|
|
| MD5 |
6d13b7c85b9b555d565a047e2083a019
|
|
| BLAKE2b-256 |
4b5d5bbaac3570fe3c791467f1027600d956a013e7d88e2b03b05a7ffa61a26c
|