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

Status
Not open for further replies.
Try mass OpenAI prompt sender. Make it public. Inspire some great heads and we will have the best article generator on the forum.
 
Im so interested. Pm me. maybe we can also team up
 
Can you create an instagram bot that post tags automatically and repost posts containing specific hashtags
 
Hi @Paranoid Android,

I'm looking to build a Quora bot that will automatically post an answer to a question.

The bot needs to fetch API data from a peppertype.ai to produce content for the answers.

I also need it to post very slow from one account to avoid bans.

The interval to post from one Quora account to another Quora account is 5-10 minutes at least.

It also needs proxies to avoid bans and some Quora accounts.

Thanks.
 
Got into python and I'm obsessed with it. But I'm not finding any real world problems to solve or automate. And having been around BHW for so many years there is only a set of problems that I'm actually interested in solving. I am deeply sorry for the hungry kids but NO I don't want to plot global hunger stats. I would like to code up stuff that makes getting rich easier.

So if you have anything that you'd like coded up in python, do post your requirement here.

Catch: the code would be opensourced and published on github, and probably on a thread under Making Money section too. So please do not ask me to make stuff that you'd like to keep proprietary.

So please challenge me. Please list out your requirements and I'll reply once I take it up. I can take only 1 project at a time.


I'd like to see what I'm worth to the IM community with my new found skill.
And please don't ask me to make a scraper. HTML traumatises me. If you need something pulled from an api I can definitely do that for you.


All discussions and requirements to be posted on this thread, there will be no private conversations. And if it is something that I would prefer not to work on, which I might if the work isn't challenging enough (or too challenging :D), please accept my apologies.
Can you write a code to scrape domains, check their DA and category?
 
Hey guys, been a little busy with an NLP thing with the working title WordAI Killer. I'll launch it soon and revisit this thread right after that. Please keep posting requests until then
 
Hey guys, been a little busy with an NLP thing with the working title WordAI Killer. I'll launch it soon and revisit this thread right after that. Please keep posting requests until then
Are you doing machine learning and / or stuff related to that already? That's great. Many coders spend years to get to this point.
 
import json import sys import requests def search(title): url = "http://archive.org/advancedsearch.php" params = {"q": f"title:({title})", "output": "json", "fields": "identifier,title", "rows": 50, "page": 1,} resp = requests.get(url, params=params) return resp.json() if __name__ == "__main__": title = sys.argv[1] data = search(title) docs = data["response"]["docs"] print(f"Found {len(docs)} items, showing first 10") print("identifier\ttitle") for row in docs[:10]: print(row["identifier"], row["title"], sep="\t")

and

"""Find a video at the Internet Archive by a partial title match and display it.""" import sys import webbrowser import requests def search(title): """Return a list of 3-item tuples (identifier, title, description) about videos whose titles partially match :title.""" search_url = "https://archive.org/advancedsearch.php" params = { "q": "title:({}) AND mediatype:(movies)".format(title), "fl": "identifier,title,description", "output": "json", "rows": 10, "page": 1, } resp = requests.get(search_url, params=params) data = resp.json() docs = [(doc["identifier"], doc["title"], doc["description"]) for doc in data["response"]["docs"]] return docs def choose(docs): """Print line number, title and truncated description for each tuple in :docs. Get the user to pick a line number. If it's valid, return the first item in the chosen tuple (the "identifier"). Otherwise, return None.""" last = len(docs) - 1 for num, doc in enumerate(docs): print(f"{num}: ({doc[1]}) {doc[2][:30]}...") index = input(f"Which would you like to see (0 to {last})? ") try: return docs[int(index)][0] except: return None def display(identifier): """Display the Archive video with :identifier in the browser""" details_url = "https://archive.org/details/{}".format(identifier) print("Loading", details_url) webbrowser.open(details_url) def main(title): """Find any movies that match :title. Get the user's choice and display it in the browser.""" identifiers = search(title) if identifiers: identifier = choose(identifiers) if identifier: display(identifier) else: print("Nothing selected") else: print("Nothing found for", title) if __name__ == "__main__": main(sys.argv[1])

I don't know what you were trying to achieve, so I cant tell if this might be a blueprint to the solution. The credit goes to Bill Lubanovic. Code is blatantly ripped from 'Introducing Python' by Bill Lubanovic
 
Last edited:
Well I guess I gave up because it didn't really interest me at that time, but now since I discovered the trafilatura library I was going to give it a try again, but this code should work great.
import json import sys import requests def search(title): url = "http://archive.org/advancedsearch.php" params = {"q": f"title:({title})", "output": "json", "fields": "identifier,title", "rows": 50, "page": 1,} resp = requests.get(url, params=params) return resp.json() if __name__ == "__main__": title = sys.argv[1] data = search(title) docs = data["response"]["docs"] print(f"Found {len(docs)} items, showing first 10") print("identifier\ttitle") for row in docs[:10]: print(row["identifier"], row["title"], sep="\t")

and

"""Find a video at the Internet Archive by a partial title match and display it.""" import sys import webbrowser import requests def search(title): """Return a list of 3-item tuples (identifier, title, description) about videos whose titles partially match :title.""" search_url = "https://archive.org/advancedsearch.php" params = { "q": "title:({}) AND mediatype:(movies)".format(title), "fl": "identifier,title,description", "output": "json", "rows": 10, "page": 1, } resp = requests.get(search_url, params=params) data = resp.json() docs = [(doc["identifier"], doc["title"], doc["description"]) for doc in data["response"]["docs"]] return docs def choose(docs): """Print line number, title and truncated description for each tuple in :docs. Get the user to pick a line number. If it's valid, return the first item in the chosen tuple (the "identifier"). Otherwise, return None.""" last = len(docs) - 1 for num, doc in enumerate(docs): print(f"{num}: ({doc[1]}) {doc[2][:30]}...") index = input(f"Which would you like to see (0 to {last})? ") try: return docs[int(index)][0] except: return None def display(identifier): """Display the Archive video with :identifier in the browser""" details_url = "https://archive.org/details/{}".format(identifier) print("Loading", details_url) webbrowser.open(details_url) def main(title): """Find any movies that match :title. Get the user's choice and display it in the browser.""" identifiers = search(title) if identifiers: identifier = choose(identifiers) if identifier: display(identifier) else: print("Nothing selected") else: print("Nothing found for", title) if __name__ == "__main__": main(sys.argv[1])

I don't know what you were trying to achieve, so I cant tell if this might be a blueprint to the solution. The credit goes to Bill Lubanovic. Code is blatantly ripped from 'Introducing Python' by Bill Lubanovic
 
i need amazon web scraper. & discount alerter.

the project is as follows

1- I will write the categories I want ( csv or txt )

2- scrapy will scrape the prices links of the products on all pages by reading these categories one by one. mysql will register e

3- In this way, the bot will work continuously in circle.

4- price decreases and increases will be recorded next to the product in mysql.

5- When the rate I set and above is a price drop, it will forward the products to my instant telegram channel.
 
sounds interesting. please tell me more about it
More like a bot in which you input the link to a music on Audiomack... It auto plays the music for minimum of 10 to 15 seconds, reloads the page and continues again

Since you don't need an account to play a song on the Audiomack app
 
HI
I am much interested for this

Can you write code for back-in-stock amazon products? also, can you try to set auto-buy for it?

Thanks in advance
 
Google serp bot

find the website you need to find based on the input keyword

maybe can be in loop so you can make a list of keywords

that would be great to build
 
Bro i don't know why ? But Python is very utilisable and can be used for many things, apps websites programs,
I can suggest you the GitHub if you want to solve some delicate problems
 
Status
Not open for further replies.
Back
Top