Register to receive the API key
import asyncio
from webscrapper_client_api import WebscrapperClientAPIAsync
async def main():
async with WebscrapperClientAPIAsync("your_api_key") as client:
# Basic page retrieval
result = await client.get_page(url="https://example.com")
print(f"Status: {result['status_code']}")
print(f"Content length: {len(result['html'])}")
# RKN check
rkn_result = await client.check_rkn(url="https://example.com")
print(f"RKN check result: {rkn_result}")
if __name__ == "__main__":
asyncio.run(main())
Services built using scrapper API: