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

Status
Not open for further replies.
If I want to start learning Python, where do you recommend I start from?

Wanted to ask you where did you learned it? I really want to learn.
@Ashk881 has left a good reply here https://www.blackhatworld.com/seo/i...for-you-in-python-for-0.1419654/post-15406904
I do have a little bit of exposure to coding from when I was 13 years old in 1994, so it wasn't hard for me to look at sample codes and figure out the syntaxes on w3 schools. Coming from Foxpro and Turbo C I am quite fascinated by the huge number of libraries that python has. So though courses would get you started, you really should read docs which are all written in standardized format with sample codes.
Do you know flask, could you make a web app; Dm me this will be interesting.
i know the basics but I haven't applied it on anything yet apart from a few test stuff here and there. Been waiting for something interesting to do with it. Please message me on Telegram @TheRealParanoidAndroid and we'll discuss this. Gvie me the challenge and you'll be helping me learn.
Hi there. Can you help me to create a telegram bot in python to count number of invites/referal for each member from a group?
Not there yet but hope to get there soon.
can you make a crypto miner that mines 1 btc daily for me bro?
With enough GPUs I definitely can. Please do the math on the current hash rate and source the hardware and I'll set it up for you in a giffy :D
Create Quora bot that answers related question based on answer you provide and YouTube view bot
I was thinking of making one too with GPT3, fetch the question, run it through GPT and post the answer. Should be pretty easy. Will revert on this soon.
I'm really interested!

A Google or Bing PAA scraper
Not sure what this is, never been an SEO guy. Then again, I kind of hate scraping, working with all tags and stuff.
well, I do need a simple website made. paying also..
Please check out the Web Design section in the Marketplace. Some highly skilled designers there.
you could also program a machine learning neural voice builder. where you only use a text file and an mp3 file to create or build a neural custom voice. like Microsoft azure but an offline version that doesn't require servers. and can be like an offline software
Really need to get into ML, im on my way there. But do you think common people like us who are not Microsoft or Apple would be able to make TTS that is better than the ones available on Windows and MacOS already?
I need this too
Please stay tuned
Is this fo real brother? let me know!
Well they say its always April 1st somewhere
@Paranoid Android
A voting bot for Hacker News or Product Hunt.

This is something I wanted to do for a while but haven't got the time to look into yet.
Easy to do with chromium headless browser or selenium. I'll let you figure it out. Will be happy to answer questions on this thread.
A script that crawl an entire site and check for phrases similarity to posts titles. The script will make a list of interlinking opportunities.
Definitely doable. Will come back to this soon as I finish what I've committed to so far.
 
Challenge Accepted!
You're going to give me a list of sites in one file and a list of links to look for in another file I presume? or do you just want to check for all outbound links? Please ping me on Telegram @TheRealParanoidAndroid to discuss the details. Kind reminder to everyone I would like to keep chats and private discussions to the minimum, and reserve it only for details that can't be shared in public.
I will give you the list in a day or 2 Will ping you on telegram.
Not all outbound links.
I have a historical database of backlinks and lot's of those links are broken/removed/not working.
This kind of application will help me with finding linking opportunities from the database, something which takes me & my VA a lot of time to do manually.
 
Easy to do with chromium headless browser or selenium. I'll let you figure it out. Will be happy to answer questions on this thread.
I thought YOU "will code up (almost) anything for you in Python for $0" :p :D

I'd go with python requests instead of chromium or selenium. Anyway, good luck in your coding journey.
 
I thought YOU "will code up (almost) anything for you in Python for $0" :p :D

I'd go with python requests instead of chromium or selenium. Anyway, good luck in your coding journey.
not sure how you'd click the upvote button with requests, and yes thats right, its almost anything that I can do :)

thanks for wishing me luck on my journey
Forgot to say that the similierty should be semantic...
sure we'll figure it out
I will give you the list in a day or 2 Will ping you on telegram.
Not all outbound links.
I have a historical database of backlinks and lot's of those links are broken/removed/not working.
This kind of application will help me with finding linking opportunities from the database, something which takes me & my VA a lot of time to do manually.
sure, will look forward to it.
 
some kind of automate for netu.tv api i have many videos from their site and would like some automation in copying videos to my acc and getting back my own embed
I'm starting with this now. Will PM for inputs if I need any, pl reach out to me on Telegram @TheRealParanoidAndroid
 
Its on the top of my list right now. Make an OpenAI account and you get an $18 credit. The thing is I don't know JS, so you'll need to figure out how to add it to your website. But I can make a bot that works on command line easily.
Sooooo cool ! As I'm working on Tinder full time, feel free to contact me if you need any information. And command line bot would be perfect, we will be able to integrate it on all the website we want by ourself :)
 
some kind of automate for netu.tv api i have many videos from their site and would like some automation in copying videos to my acc and getting back my own embed
Boomshakalak!

Python:
import requests
import time
import csv

input_list_file_name = 'vid.list'
api_key = 'apikey'

with open('vids.list','r') as vidslist:
    for i, link in enumerate(vidslist):
        rr=requests.post(f'https://netu.tv/api/file/remotedl?key={api_key}&url={link}')
        print(i+1,'videos posted')
        print(rr.text)
        for key in rr.json()['result']['id']:
            time.sleep(20)
            sr = requests.get(f'https://netu.tv/api/file/status_remotedl?key={api_key}&id={key}')
            url = sr.json()['result']['files'][key]['url']
            filecode = sr.json()['result']['files'][key]['file_code']
            time.sleep(2)
            er = requests.get(f'https://netu.tv/api/file/embed?key={api_key}&file_code={filecode}')
            title = er.json()['result']['files'][key]['name']
            time.sleep(2)
            with open('embed.csv', 'a') as embed:
                writer = csv.writer(embed, delimiter=',')
                writer.writerow([link, title, url])
                print(i+1, 'rows appended')
 
I am sorry I don't want to do scrapers. I was kind of working on the waybackmachine scraper and I've almost given up already. Pl give me stuff with more APIs or logics and I'll do it for you.
 
I love when BHW members give out awesome freebies like this one, it's useful for everyone.

Not gonna participate but wanted to say you're surely appreciated! :)
 
is this freebies still open ?

can you make reddit account creator?
 
Status
Not open for further replies.
Back
Top