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

Status
Not open for further replies.
I don´t know about a "real-life" problem but this is something I´ve been wanting to write or hire someone to do.

Leverage the power of Python and the API key from Rytr to mass generate meta descriptions in bulk.

I recently worked on a site with over 400+ pages without meta descriptions and addressing this issue manually requires a hell lot of time. Not to mention, metas are not a ranking factor but they do impact CTR.

I contacted someone from here and Upwork to write this and both charged $300+ for this.

Is this something that interests you?
 
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')
refined it a bit with @serije3 's help

Python:
import requests
import time
import csv
 
input_list_file_name = 'vids.list'
api_key = 'api'
inpName = input()
 
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']:
                sr = requests.get(f'https://netu.tv/api/file/status_remotedl?key={api_key}&id={key}')
                filecode = sr.json()['result']['files'][key]['file_code']
                time.sleep(2)
                dr = requests.get(f'https://netu.tv/api/file/embed?key={api_key}&file_code={filecode}')
                url = dr.json()['result'][filecode]['embed_code']
                title = inpName + str(i)
                time.sleep(2)
                with open('embed.csv', 'a+') as embed:
                    writer = csv.writer(embed, delimiter=',')
                    writer.writerow([link, title, url])
                    print(1, 'rows appended')
 
I don´t know about a "real-life" problem but this is something I´ve been wanting to write or hire someone to do.

Leverage the power of Python and the API key from Rytr to mass generate meta descriptions in bulk.

I recently worked on a site with over 400+ pages without meta descriptions and addressing this issue manually requires a hell lot of time. Not to mention, metas are not a ranking factor but they do impact CTR.

I contacted someone from here and Upwork to write this and both charged $300+ for this.

Is this something that interests you?
Love APIs. Challenge Accepted!

Will start with this first thing my morning
 
a content locker that unlocks content after doing 2-3 tasks like follow on Instagram etc
 
I've been banging my head against the wall trying to sort out using paramiko to SSH into a jump server and use Keyboard Interactive to accept user input (so the user can manually enter their 6-digit Google Authenticator TOTP).

Think you can help with this?
 
I've been banging my head against the wall trying to sort out using paramiko to SSH into a jump server and use Keyboard Interactive to accept user input (so the user can manually enter their 6-digit Google Authenticator TOTP).

Think you can help with this?
Sure, I can take a look. Not experienced with this so no promises
 
  • Like
Reactions: Toz
Hey there,

I am looking for a simple bot that will be able to do web automation, basically open a website create an account do some simple tasks I already have a base code in python If you would love just to look at it give me your opinion there is no need to even work on it just apperciate each others work xD
 
Good luck on your journey. Nice hustle :

Can I request you to make a bot that will check if a specific review content posted on Gmb is still live or not.

Basically it will check the content in the line(one excel) matches the content GMB and will upload a CSV file

Regards
 
Hi, Good Thread, Actually i'm looking for a solution for customized content creation and i know it's a bomb because everybody needs an autopilot readable and non plagiarism content. And these days i was looking for a developer to develop what i need.
The bot grab the content using RSS, then used the cracked version of Quillbot browser spin the article then login to Grammarly with cookies and fix grammar issue at once and in the end post the content on the WordPress website. With this kind of article i rank #1 in google and think if you create mass content like it using bot. and actully there are some bots for each steps of this idea and i think it just need combine some bots and customization
 
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.
 
Status
Not open for further replies.
Back
Top