Skip to main content

this module team dccs personal module for using shortcut python code

Project description

A Simple Module For Helping Developmers.

DCCSX The Project Helper

Developer: Md Saimun Team: DCCS

The Module DCCSX Was Made For Helping Team Projects. But Now You Can Also Use This. No Need Any Permission To Use This Module

Installation

You can install dccsx using pip:

pip install dccsx

How To Use?

Everything Is Easy Full Documentation Below.

Available Features On This Version:

• Team Logo 
• Change Facebook Language (lan_change)
• Facebook Auto bot (dccsfb)

Example Codes (Team Logo):

from dccs_logo import logo
from rich import print as pprint
author = "Team dccs"
tools = "test"
version = 1.0
github = "team-dccs"

logo = logo(author, tools, version, github)
pprint(logo)

Example Codes (Team Logo V2):

from dccs_logo import logo2
from rich import print as pprint
author = "Team dccs"
tools = "test"
version = 1.0
github = "team-dccs"

logo = logo2(author, tools, version, github)
pprint(logo)

Example Codes (Facebook Language Change):

import requests
from bs4 import BeautifulSoup
import urllib.parse
from dccsx import lan_change

def main():
    cookie = "YOUR_COOKIE_VALUE"
    response = lan_change(cookie)
    if response:
        print("Language changed successfully!")
    else:
        print("Language change failed.")

if __name__ == "__main__":
    main()

Example Codes (Facebook auto Bot):

from os import system as phone
import requests
try:
    from dccsx import dccsfb
except:
	phone("pip install dccsx")
import time 

##must need this 
session = requests.session()
fb =dccsfb(session)
cookie="your cookie"
fb.set_cookie(cookie)


fb.set_bio("i am a bot")
fb.add_nickname("balu")
fb.follow("100077473742575")

## have a many options try like this 

many options

import requests
from bs4 import BeautifulSoup
from dccsx import dccsfb
import time
import re
import random

# Create a session object and log in to Facebook
session = requests.session()
# Perform the login process here...

# Create an instance of the dccsfb class
fb = dccsfb(session)

try:
    # Set the profile picture
    profile_picture_result = fb.set_profile_picture("profile_picture.jpg")
    print(profile_picture_result)
except Exception as e:
    print("Failed to set profile picture:", str(e))


try:
    # Set the bio
    bio_result = fb.set_bio("Hello, I'm a Python bot!")
    print(bio_result)
except Exception as e:
    print("Failed to set bio:", str(e))


try:
    # Set the relationship status
    relationship_status_result = fb.set_relationship_status("Single")
    print(relationship_status_result)
except Exception as e:
    print("Failed to set relationship status:", str(e))

try:
    # Add a nickname
    nickname_result = fb.add_nickname("Bot")
    print(nickname_result)
except Exception as e:
    print("Failed to add nickname:", str(e))

try:
    # Set the about section
    about_result = fb.set_about("I'm a bot designed to automate tasks on Facebook.")
    print(about_result)
except Exception as e:
    print("Failed to set about section:", str(e))

try:
    # Set the favorite quote
    quote_result = fb.set_favorite_quote("Stay hungry, stay foolish.")
    print(quote_result)
except Exception as e:
    print("Failed to set favorite quote:", str(e))

try:
    # Add a comment to a post
    comment_result = fb.add_comment("post123456789", "Great post!")
    print(comment_result)
except Exception as e:
    print("Failed to add comment:", str(e))

try:
    # Follow a user or page
    follow_result = fb.follow("user123")
    print(follow_result)
except Exception as e:
    print("Failed to follow:", str(e))

try:
    # React to a post
    react_result = fb.react_to_post("post123456789")
    print(react_result)
except Exception as e:
    print("Failed to react to post:", str(e))

try:
    # Join a group
    join_group_result = fb.join_group("group123")
    print(join_group_result)
except Exception as e:
    print("Failed to join group:", str(e))

Remember This Module Is Still On Development You Can See Some Bug We Will Fix Them Soon!.

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

dccsx-0.0.4.tar.gz (83.1 kB view hashes)

Uploaded Source

Built Distribution

dccsx-0.0.4-py2.py3-none-any.whl (80.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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