
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
google-bulk-url-indexing
Advanced tools
A package to submit Bulk URLs for Google Indexing using an Excel file
A Python package to submit URLs for Google Indexing using an Excel file. This package allows you to submit up to 200 URLs daily to Google Search Console for indexing, which can significantly benefit your SEO efforts.
To install this package, use pip:
pip install my_project
After installing, you can use the package from the command line.
my_project
You can also use it as a module in your Python code.
from my_project.main import authorize_credentials, submit_url, read_urls_from_excel
# Provide the complete path of the API key file
API_Path = "path/to/your/encoded-etching-0c9a60c79261.json"
# Provide the path to the Excel file
excel_file_path = "path/to/your/link.xlsx"
# Authorize credentials
creds = authorize_credentials(API_Path)
# Provide the request type
requestType = "URL_UPDATED" # Choose between "URL_UPDATED" or "URL_DELETED"
# Read URLs from Excel
urls_to_submit = read_urls_from_excel(excel_file_path)
# Loop through each URL and submit for indexing or deletion
for url in urls_to_submit:
response_code = submit_url(creds, url, requestType)
if response_code == 200:
print(f"Successfully submitted: {url}")
else:
print(f"Error submitting {url}. Error Code: {response_code}")
pip install my_project
link.xlsx
) with the URLs you want to submit, placing each URL in a separate cell in the first column.google_indexing/
│
├── indexing/
│ ├── __init__.py
│ ├── main.py
│
├── setup.py
├── README.md
google-auth
google-auth-oauthlib
requests
pandas
This project is licensed under the MIT License - see the LICENSE file for details.
Your Name - mscrabe@gmail.com
If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are welcome.
If you encounter any issues, please open an issue on the repository.
FAQs
A package to submit Bulk URLs for Google Indexing using an Excel file
We found that google-bulk-url-indexing demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.