File: create-config

package info (click to toggle)
consonance 0.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 324 kB
  • sloc: python: 993; makefile: 4
file content (15 lines) | stat: -rwxr-xr-x 384 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python3

from consonance.config.client import ClientConfig
from consonance.config.templates.useragent_samsung_s9p import SamsungS9PUserAgentConfig
import uuid

client_config = ClientConfig(
    username=999999999,
    passive=True,
    useragent=SamsungS9PUserAgentConfig(
        app_version="2.19.51",
        phone_id=str(uuid.uuid4())
    ),
    pushname="consonance"
)