Skip to content

An asynchronous API wrapper for Dead By Daylight, written in Python

Notifications You must be signed in to change notification settings

misandrie/DBDClient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Nightfall

An asynchronous API wrapper for Dead By Daylight, written in Python

Installation

To install the library normally, run:
python -m pip install --user --upgrade git+https://github.com/malchanceux/Nightfall.git

Example usage

Retrieve current shrine of secrets perks

from DBDClient.Client import Client
from DBDClient.Methods import Store
import asyncio

# Declare behaviour session token variable
bhvrSession='value'

# Create Client object
Player = Client(bhvrSession)

async def main():
    # Initialize object
    await Player.init()  
    
    # Get current shrine perks
    perks = await Store.Shrine.getAvailable(Player)  
    
    print(perks)

asyncio.run(main())

Usage with Fiddler (or any other HTTPS traffic capturing program)

Go to this line and change verify=True to verify=False.
This will disable SSL verification and allow you to use the library with Fiddler

About

An asynchronous API wrapper for Dead By Daylight, written in Python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages