🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

google-bulk-url-indexing

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-bulk-url-indexing

A package to submit Bulk URLs for Google Indexing using an Excel file

0.0.1
PyPI
Maintainers
1

My Project

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.

Features

  • Authorizes credentials using a service account file.
  • Submits URLs for indexing or deletion.
  • Reads URLs from an Excel file.
  • Allows submission of up to 200 URLs daily.

Benefits

  • Fast Implementation: Quickly set up and start submitting URLs.
  • Excel Integration: Easily manage URLs in an Excel file.
  • Increased Limit: Submit up to 200 URLs daily to Google Search Console.

Installation

To install this package, use pip:

pip install my_project

Usage

Command Line

After installing, you can use the package from the command line.

my_project

As a Module

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}")

Working Method

  • Install the Package
    pip install my_project
    
  • Prepare Your Excel File
    • Create an Excel file (link.xlsx) with the URLs you want to submit, placing each URL in a separate cell in the first column.
  • Connect Your JSON File
    • Obtain a service account JSON file from Google Cloud Console and provide the complete path to it in your script.
  • Run the Code
    • Execute the script to start submitting your URLs for indexing.

Project Structure

google_indexing/
│
├── indexing/
│   ├── __init__.py
│   ├── main.py
│
├── setup.py
├── README.md

Dependencies

  • google-auth
  • google-auth-oauthlib
  • requests
  • pandas

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

Your Name - mscrabe@gmail.com

Acknowledgments

Contributing

If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are welcome.

Issues

If you encounter any issues, please open an issue on the repository.

FAQs

Did you know?

Socket

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.

Install

Related posts