I will code up (almost) anything for you in Python for $0

Status
Not open for further replies.
can you make a bot download tiktok videos without watermark and upload on youtube?
 
Can you help me create a bot that takes other people's IG posts and posts them to my twit account?
 
Can you code a quora bot to add answers with affiliate links?
 
Count me in , I have few bots to make , I would use your help over !
 
Can you code simple grid bot with trialing down and make it free for bhw users?
 
Can you wirte a bot for Auto comment Blogger? ;) Thank you bro. Hope see your code soon
 
I have 3 text files with data.

First file is a file with RAW EEG.

Second file is a file with words corresponding to the RAW EEG numbers of the first file.

Third file is a file with advanced text, super clear to read created by a 10 to 20 pages of regex code. The hard-coded regex reorganizes the words by applying grammar rules.

The ML algorithm studies all three files and trains on them.

So:

Numbers 1
Words 2
Advanced speech 3

Then with the trained model I connect the EEG device live to my brain and it has to "speak" like the 3rd file LIVE word by word. I'm on file 2 right now it kind of makes sense.

From RAW EEG to words but not clear speech yet.

Next step is to make the speech coherent and super read able. What is your advice about it. I need to train the three files that only I can create. The RAW EEG speaks live with words
 
this will help me lot , if anyone know/have please share if not please make it.

1. Convert video files in bulk, which has the ability to change contrast, change sound, add opening and closing videos, add video frames as background, change video ratio etc ,
2.search and Convert image files in bulk, search image by keyword at google/bing , convert/add image a watermark/text (which text is a spin text)
3. Scrape google allintittle / KGR(keyword golden ratio), which user already have keyword and volume search.

and many more but i think i just need these tools for now
 
My idea which i try to solve currently with almost zero knowledge in python (this is the reason why i learn python).

Check the Accounts i follow on instagram ->
Extract the most liked / comment post and download image, text and instagram profile name each and save it in a folder.

Thats it actually. I try to wrap my brain around it already for 2 months, i m getting better in python but it feels unreachable.
 
Hi! I'm unsure if this is python related/possible, but I'm essentially looking for an app or something I can run on a server that will utilize rotating proxies, to call the "chg IP" API, and use each new IP to visit a specific website for about 30-60seconds, then change again. And do this continuously without my intervention. Thanks in advance! I'd be willing to pay even.
i appreciate the man effort to challenge himself and code for free, i just publishing this kind of bot in my github but i use tor browser instead to change ip.
here is the code :

Python:
import random
import numpy as np
from stem import Signal
from stem.control import Controller
from selenium import webdriver
from selenium.webdriver.firefox.firefox_profile import FirefoxProfile
import os
import time
from fake_useragent import UserAgent

useragent = UserAgent()

def switchIP():
    #Channel Traffic from specific country or countries
    #controller.set_options({'ExitNodes': '{uk},{us},{ru}'})
    with Controller.from_port(port = 9151) as controller:
        controller.authenticate()
        controller.signal(Signal.NEWNYM)
       
def getproxy(portname,portp):
    torexe = os.popen(r'c:\\Users\\user\\Desktop\\Tor Browser\\Browser\\TorBrowser\\Tor\\tor.exe')
    profile = FirefoxProfile(r'C:\\Users\\user\\Desktop\\Tor Browser\\Browser\\TorBrowser\\Data\\Browser\\profile.default')
    profile.set_preference("general.useragent.override", useragent.random)
    profile.set_preference('network.proxy.type', 1)
    profile.set_preference('network.proxy.socks', portname)
    profile.set_preference('network.proxy.socks_port',int(portp))
    profile.set_preference("network.proxy.socks_remote_dns", True)
    profile.set_preference( "javascript.enabled", False)
    profile.update_preferences()
    return webdriver.Firefox(firefox_profile= profile)
   

def main():
    clicks = random.randint(75,382)
    try:
        for i in range(clicks):
            try:
                delays = random.randint(1,45)
                delay = np.random.choice(delays)
                tmemail = random.randint(3,6)
                driver = getproxy("127.0.0.1", 9150)
                driver.get('your_website')
                time.sleep(tmemail)
                driver.find_element_by_link_text('your_link').click()
                time.sleep(tmemail)
                switchIP()
                driver.quit()
                time.sleep(delay)
            except:
                switchIP()
                driver.quit()
                time.sleep(delay)
                continue
    except:
       time.sleep(30)
       switchIP()
       driver.quit()
       
       
if __name__ == "__main__":
    main()
 
Status
Not open for further replies.
Back
Top