Upload image from your Computer to Google Drive using HTML-form. Show image via URL (IMAGE function) in your Spreadsheet
The sctipt was originally designed by Kanshi TANAIKE.
Please see the original script and instructions first.
| import json | |
| import requests | |
| from bs4 import BeautifulSoup | |
| def fetch_coingecko_html(): | |
| # make a request to the target website | |
| r = requests.get("https://www.coingecko.com") | |
| if r.status_code == 200: | |
| # if the request is successful return the HTML content |
| @if ($paginator->hasPages()) | |
| <div class="flex items-end my-2"> | |
| @if ( ! $paginator->onFirstPage()) | |
| {{-- First Page Link --}} | |
| <a | |
| class="mx-1 px-4 py-2 bg-blue-900 border-2 border-blue-900 text-white font-bold text-center hover:bg-blue-400 hover:border-blue-400 rounded-lg cursor-pointer" | |
| wire:click="gotoPage(1)" | |
| > | |
| << |
| <div class="container-fluid"> | |
| <div class="row"> | |
| <!-- /.col-md-6 --> | |
| <div class="col-lg-12"> | |
| <div class="card"> | |
| <div class="card-body"> | |
| <div class="row" id="laravelPagination" data-url="{{ route('country.page') }}" x-data="laravelPagination()" | |
| x-init="init()"> | |
| <template x-for="item in country" :key="item.id"> | |
| <div class="card col-12 mb-3"> |
The sctipt was originally designed by Kanshi TANAIKE.
Please see the original script and instructions first.
| <!-- Wherever your head tag is located, add the new partial --> | |
| <head> | |
| {{ partial "google-fonts" . }} | |
| </head> |