FREE Python Programming! :D

Status
Not open for further replies.
You won't know how far you can push something until you test it. Try, try, and try again until you succeed. Don't be afraid of an account being banned, that's how you learn. Just make another and go again.

Never done any music promotion before, but I imagine exposure is everything. Try twisting a couple traffic generation methods around to get visitors to your pages. Be creative, you never know what might work.
alright ill give that a try. but the only thing im worried about is the company im trying to start getting black listed of something else happening to since im going to try to make it a top search result. any suggestions on making it a page 1 on googles results without the risk of being black listed or noticed by google or whatever search engine i try it one?
 
I need auto-blogging script. I am learning python, but need some help. If you have some free time please help
 
Hi guys, hope you're doing well. I have some free time at the moment and thought I should give back to the community some. Just my way of saying thanks to such an awesome community.

I am willing to code any python script/bot you guys may want, just drop a comment down below with your request. However, please don't say something generic, like 'instagram bot'. Be specific in what it is you need done.

I'll be releasing all completed scripts in this thread, so be sure to sub!
Gosh! very nice of you. No request in mind, but will be following to see the completed scripts that can be help to me.
 
Hi. I'm interested. I need an audiomack streaming bot. A bot just to send streams to a song
 
Been looking for a solid script to scrape Retail Businesses Contact information and social accounts from Google Searches. Not sure if that's too far fetched. Thanks in advance if this is something you can do.
 
I need bot that can follow and unfollow with 15 sec rest on tiktok.

Just to follow 5 account and unfollow them after 15sec (loop)
 
Hey mate,


I need a dashboard that holds multiple Command Prompt CMD's (almost like Terminator on Linux) except whenever i restart the PC, the command i put into command prompt are saved

So i can restart PC, open up programme and run the commands without having to manually copy and paste the commands into CMD 300x times

(Yeah i run like 300 CMD's on my PC for my Instagram bot which is written in python)

When my PC reboots, i have to manually reopen 300 command prompts and re-paste the commands in :eek:
 
Hi guys, hope you're doing well. I have some free time at the moment and thought I should give back to the community some. Just my way of saying thanks to such an awesome community.

I am willing to code any python script/bot you guys may want, just drop a comment down below with your request. However, please don't say something generic, like 'instagram bot'. Be specific in what it is you need done.

I'll be releasing all completed scripts in this thread, so be sure to sub!
Hello,
First of all, thank you for doing this service for free, I think it can help BHW community members!

I am also interested in a Python script, the purpose of the script being to publish videos automatically on YouTube, an "upload automation" bot
 
Am looking for a script that can bulk scrape the first article from google according to my keyword and paraphrase articles scraped.
 
I'm interested in a facebook mass group sharing script and twitter comment script by keyword.

Thank you.
 
Glad to the community has taken an interest! :D

I need auto-blogging script. I am learning python, but need some help. If you have some free time please help
Since you are learning I will give you half the solution. Here is a python program that can upload to WordPress for you. Up to you to figure out scheduling and article generation. You will need the WP plugin 'Application passwords' by George Stephanis installed for the API authentication to enable.

import requests import base64 url = "YOUR-DOMAIN-HERE.COM/wp-json/wp/v2/posts/" postID = 1 user = "your-username" password = "your-password" credentials = user + ':' + password token = base64.b64encode(credentials.encode()) header = {'Authorization': 'Basic ' + token.decode('utf-8')} post = { 'title' : 'Hello World', 'content' : 'This is my first post created using rest API Updated' } r = requests.post(url + postID, headers=header, json=post) print(r)



Been looking for a solid script to scrape Retail Businesses Contact information and social accounts from Google Searches. Not sure if that's too far fetched. Thanks in advance if this is something you can do.
Seems doable, but needs more specificity. Are you looking for the serp snippet data in those little local cards, or content on the resulting pages?

Hey mate,


I need a dashboard that holds multiple Command Prompt CMD's (almost like Terminator on Linux) except whenever i restart the PC, the command i put into command prompt are saved

So i can restart PC, open up programme and run the commands without having to manually copy and paste the commands into CMD 300x times

(Yeah i run like 300 CMD's on my PC for my Instagram bot which is written in python)

When my PC reboots, i have to manually reopen 300 command prompts and re-paste the commands in :eek:
have you tried creating a .bat file? take all your commands and put them into text file on one line each. Then save it with the .bat extension. double clicking the file will then run all the commands inside.


Hello,
First of all, thank you for doing this service for free, I think it can help BHW community members!

I am also interested in a Python script, the purpose of the script being to publish videos automatically on YouTube, an "upload automation" bot
Would like a telegram group shiller bot if possible

Will look into these.
 
I just wanted to say that this is very kind of you. It's great to see people with these kinds of initiatives. Amazing job!
 
Since you are learning I will give you half the solution. Here is a python program that can upload to WordPress for you. Up to you to figure out scheduling and article generation. You will need the WP plugin 'Application passwords' by George Stephanis installed for the API authentication to enable.
Thanks for the reply

I need something advanced article generator

Like:
I will have a csv sheet with thousands of keywords
And an article of about 200 sentences (every sentence will have almost 10 variations)
The article generator will take random choice from first to 200th sentence and also include keyword in some given places

I will PM more details if you have some time to discuss

Thanks
 
Status
Not open for further replies.
Back
Top