Metadata-Version: 2.1
Name: seizcord
Version: 0.0.3
Summary: seizcord is a module made to create selfbot or scripts for discord
Author: uhq.s
Project-URL: Homepage, https://github.com/seized0/seizcord
Project-URL: Issues, https://github.com/seized0/
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# Seizcord
 https://pypi.org/project/seizcord/
 https://discord.gg/wyUuYr9DEN

 Seizcord is a simple library using discord api
 Made by uhq.s

# REQUIREMENTS 

pip install requests
pip install colorama

# USING

# Block User  

```python
import seizcord

cli = seizcord.Client(token="YOUR TOKEN")

cli.blockUser(userid=)
```

# Unblock User  

```python
import seizcord

cli = seizcord.Client(token="YOUR TOKEN")

cli.unblockUser(userid=)
```

# Change Language

```python
import seizcord

# ALL LANGUAGE : ru, hi, co, ch

cli = seizcord.Client(token="YOUR TOKEN")

cli.changeLanguage(lang='')
```

# Enable Compact Mode

```python
import seizcord

cli = seizcord.Client(token="YOUR TOKEN")

cli.enableComptactMode()
```

# Disable Compact Mode

```python
import seizcord

cli = seizcord.Client(token="YOUR TOKEN")

cli.disableComptactMode()
```

# Enable Dev Mode

```python

import seizcord

cli = seizcord.Client(token="YOUR TOKEN")

cli.enableDevMode()
```

# Disable Dev Mode

```python
import seizcord

cli = seizcord.Client(token="YOUR TOKEN")

cli.disableDevMode()
```

# Enable Friends Requests

```python
import seizcord

cli = seizcord.Client(token="YOUR TOKEN")

cli.enableFriendsRequests()
```

# Disable Friends Requests

```python
import seizcord

cli = seizcord.Client(token="YOUR TOKEN")

cli.disableFriendsRequests()
```

# Leave Guild

```python
import seizcord

cli = seizcord.Client(token="YOUR TOKEN")

cli.leaveGuild(guildid=)
```

# Send Message

```python
import seizcord

cli = seizcord.Client(token="YOUR TOKEN")

cli.SendMessage(channelid=,userid=)
```

# Set HypeSquad

```python
import seizcord

# HOUSE ID : BRAVERY ID = 1     BRILLANCE ID = 2    BALANCE ID = 3

cli = seizcord.Client(token="YOUR TOKEN")

cli.setHypeSquad(houseid=)
```

# Set Theme

```python
import seizcord

# THEME : white , dark

cli = seizcord.Client(token="YOUR TOKEN")

cli.setTheme(theme='')
```




Made with ❤️
By uhq.s

