Plagiarism Checker
Plagiarism Checker
Python:
python
Copy code
import requests
def check_plagiarism(text):
# Format the query string
query = f'site:wikipedia.org "{text}"'
# Make a GET request to the Google Search API
response = requests.get(f'https://www.googleapis.com/customsearch/v1?key=YOUR_API_KEY&cx=YOUR_SEARCH_ENGINE_ID&q={query}')
# Parse the response and check for plagiarism
search_results = response.json()
plagiarism_score = search_results['searchInformation']['totalResults']
return plagiarism_score
# Provide the block of text for plagiarism checking
text = "Block of text to check for plagiarism"
# Call the function to check plagiarism
plagiarism_score = check_plagiarism(text)
# Print the plagiarism score
print(f"Plagiarism Score: {plagiarism_score}")
No comments:
Post a Comment