Skip to main content

Python API Client for https://lolz.live/ & https://lzt.market/ & https://antipublic.one/

Project description

🚀 Installation

Install the package using pip:

pip install LOLZTEAM

Also you can download the package from here and install it manually.

pip install LOLZTEAM-<version>.tar.gz or pip install LOLZTEAM-<version>.whl

💻 Usage

Import the required modules and initialize the API clients:

from LOLZTEAM.Client import Forum, Market, Antipublic
from LOLZTEAM.Client.Base import Constants
import asyncio

token = "your_token"

forum = Forum(token=token)
market = Market(token=token)
antipublic = Antipublic(token="Antipublic_key")

# API Client Parameters

# - **token** (str): Your token.
# - **language** (str["ru", "en"]): Language of the API responses.
# - **delay_min** (float): Minimal delay between requests.
# - **proxy** (str): Proxy string.
#   > protocol://ip:port or protocol://login:password@ip:port (socks5://login:password@192.168.1.1:8080 or http://login:password@192.168.1.1:8080)
# - **timeout** (float): Request timeout.


# All following examples also work for Market & Antipublic clients

forum.settings.logger.enable()                                        # 📝 Start logging
# Forum & Market client will log into {user_id}.{Client_name}.log file
# Antipublic client will log into Antipublic.log file
forum.settings.delay.enable()                                         # 🕒 Enable auto delay (Auto delay is enabled by default for Market & Forum but not for Antipublic)

response = forum.users.get(user_id=2410024)                           # ⚡ Sync request
job = forum.users.get.job(user_id=2410024)                            # 📋 Job creation (Always SYNC)
response = forum.request("GET", "/users/2410024")                     # ⚡ Custom request (You can use full url or just path)
job = forum.request.job("GET", "/users/2410024")                      # 📋 Job creation for custom request

async def async_example():
    response = await forum.users.get(user_id=2410024)                 # ⚡ Async request
    job = forum.users.get.job(user_id=2410024)                        # 📋 Job creation (Always SYNC)
    response = await forum.request("GET", "/users/2410024")           # ⚡ Custom async request
    job = forum.request.job("GET", "/users/2410024")                  # 📋 Job creation for custom request

asyncio.run(async_example())

# You should just add ".job" between function name and parentheses to create a job.
# You can't create a job for methods that are uploading files (like avatar/background) and ofc not for client.batch(...) method.
# P.s Your IDE probably may not show that ".job" function exists but it does.

forum.settings.token = "token"                                        # 🔑 Change token
forum.settings.language = "en"                                        # 🌍 Change language (Antipublic client doesn't support language changing)
forum.settings.proxy = "http://login:password@192.168.1.1:8080"       # 🌐 Change proxy
forum.settings.delay.min = 3                                          # 🕒 Set minimal delay (E.g. When your minimal delay is 3 seconds, and a method you want to use has a 
                                                                      #     delay of 0.2 seconds, your script will sleep for 3 seconds instead of 0.2 seconds)
forum.settings.delay.disable()                                        # 🕒 Disable auto delay
forum.settings.logger.disable()                                       # 📝 Stop logging

# You can view all changeable settings in LOLZTEAM/Client/Base/Core.py file

📚 Documentation

Package Documentation:

Forum API Client Market API Client Antipublic API Client

Official API Documentation:

Forum API Market API Antipublic API

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lolzteam-2.0.21.tar.gz (48.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lolzteam-2.0.21-py3-none-any.whl (50.5 kB view details)

Uploaded Python 3

File details

Details for the file lolzteam-2.0.21.tar.gz.

File metadata

  • Download URL: lolzteam-2.0.21.tar.gz
  • Upload date:
  • Size: 48.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.7

File hashes

Hashes for lolzteam-2.0.21.tar.gz
Algorithm Hash digest
SHA256 26e79bba1776e5b3dbbc2c5d10f8cfc8853b215f8b62afc1407e2cc5d45f71f2
MD5 6f36bcb715524c6ef2c2fa1cbb1d2658
BLAKE2b-256 9b72c84b7916cf9526b9fe36a610da7414a8bd25b3a87c08bb44e91f7115a84e

See more details on using hashes here.

File details

Details for the file lolzteam-2.0.21-py3-none-any.whl.

File metadata

  • Download URL: lolzteam-2.0.21-py3-none-any.whl
  • Upload date:
  • Size: 50.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.7

File hashes

Hashes for lolzteam-2.0.21-py3-none-any.whl
Algorithm Hash digest
SHA256 ad4ebdb7262edc68a7ad3b64e35e8bc50962406df6ad33b6ee4adfa83b73a758
MD5 8e359c6ba920095c9108e71104ecc2b6
BLAKE2b-256 4e1355bfddf010cf2153adc786f590fa10aa1583e5b034d23028c9163a4bb3a5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page