auto_ptr или shared_ptr эквивалент в управляемом С++ / классы CLI

Привет в первую очередь: вы просто не можете, потому что он использует капчу. Но я изменил ваш код, чтобы он работал, если вы хотите больше узнать о python, потому что в вашем коде есть ошибки, и вам будет приятно взглянуть на мой, чтобы узнать, где ваша ошибка и т. Д.

import requests
from time import sleep
import random
url = 'http://www.xtremetop100.com/in-post.php?site=1132347673' 
#This is a list of proxy found on the internet
proxy = ["103.80.236.107:53281",
"185.32.47.250:8080",
"119.101.117.85:9999",
"41.84.135.114:53281",
"1.10.186.105:40161",
"143.255.52.102:40687",
"187.110.93.120:20183",
"60.6.241.72:808",
"176.197.145.246:32649",
"168.90.144.121:8080",
"159.192.202.122:8080",
"81.174.11.227:33803",
"185.34.17.248:58137",
"119.101.117.87:9999",
"182.160.127.53:39984",
"103.19.110.177:8080",
"91.219.235.12:8080",
"36.66.126.79:46650",
"125.26.99.222:57492"]

while True:
    try: #Try: to avoid the code to stop if a proxy don't work or something else don't work 
        s = requests.Session()
        s.headers.update({
        'Host': 'www.xtremetop100.com',
        'User-Agent': 'Mozilla/5.0 (X11; Linux i686; rv:51.0) Gecko/20100101 Firefox/51.0',
        'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
        'Accept-Language': 'en-US,en;q=0.5',
        'Referer': 'http://www.xtremetop100.com/in.php?site=1132347673',
        'DNT': '1',
        'Connection': 'close',
        'Upgrade-Insecure-Requests':'1',
        'Content-Type': 'application/x-www-form-urlencoded',
        'Content-Length': '440',
        })
        Proxy = {'http': 'http://' + random.choice(proxy)} # removed https because its useless for your website
        print("proxy = "+str(Proxy)[17:-2]) #[17:2] is to remove the first 17 char and the last 2 to just have the proxy address without https:// etc
        data = {
            'site' :"1132347673",
            'secure_captcha_check':random.randint(1000,9999), #I put a random because it never the same number
            'g-recaptcha-response':"Lol there is a captcha are u serious", #Yeah your vote will be useless now unless there are just using captcha to discourage going further without actually using it 
            'ticki' :"Vote+for+ZeroConquer[New+Server]"
               }
        r = requests.get("http://www.xtremetop100.com/in.php?site=1132347673") #to get cookies
        print(requests.utils.dict_from_cookiejar(r.cookies)) #to show the cooies
        re = s.post(url,data=data, cookies=requests.utils.dict_from_cookiejar(r.cookies), proxies=Proxy) #GO BOI
        print(r.status_code)
        print(r.reason)
        sleep(1)
    except Exception as e:
        print(e)
        sleep(1) #Sleep to avoid a infinitly spam in the terminal if something goes wrong because its a loop
        pass
9
задан Pascal T. 6 October 2008 в 23:17
поделиться

2 ответа

Я нашел ответ на codeproject:

Nishant Sivakumar отправил статью об этом по http://www.codeproject.com/KB/mcpp/CAutoNativePtr.aspx

На этой странице также ищите комментарий Denis N. Shevchenko: он обеспечивает подобную stl реализацию, которая работает вполне хорошо.

2
ответ дан 5 December 2019 в 01:19
поделиться

STL.Net документируется здесь. Я не знаю то, что указывает, что это находится в или что использует его, мог бы быть для Вас.

0
ответ дан 5 December 2019 в 01:19
поделиться
Другие вопросы по тегам:

Похожие вопросы: