
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
freesixty
Advanced tools
A simple Google Analytics API data extraction.
pip install freesixty
To set up access to your Google Analytics follow first step of these instructions.
Store them in your local machine and enter their path into KEY_FILE_LOCATION variable.
import freesixty
KEY_FILE_LOCATION = './client_secrets.json'
VIEW_ID = 'XXXXXXX'
query = {
'reportRequests': [
{
'viewId': VIEW_ID,
'dateRanges': [{'startDate': '2009-01-01', 'endDate': '2019-01-05'}],
'metrics': [{'expression': 'ga:sessions'}],
'dimensions': [{'name': 'ga:country', 'name': 'ga:date'}]
}]
}
analytics = freesixty.initialize_analyticsreporting(KEY_FILE_LOCATION)
result, is_data_golden = freesixty.execute_query(analytics, query)
On the other hand if we want to store resulting data to a desired URI.
import freesixty
KEY_FILE_LOCATION = './client_secrets.json'
VIEW_ID = 'XXXXXXX'
folder_uri = 'file:///tmp/example/folder'
query = {
'reportRequests': [
{
'viewId': VIEW_ID,
'dateRanges': [{'startDate': '2009-01-01', 'endDate': '2019-01-05'}],
'metrics': [{'expression': 'ga:sessions'}],
'dimensions': [{'name': 'ga:country', 'name': 'ga:date'}]
}]
}
analytics = freesixty.initialize_analyticsreporting(KEY_FILE_LOCATION)
freesixty.store_query(analytics, query, folder_uri)
In case a query would return over 100k rows of data it will fail. We can get around it by splitting the date range into smaller chunks:
queries = freesixty.split_query(query=query, start_date='2019-01-01', end_date='2019-02-01', freq='D')
for query in queries:
freesixty.store_query(analytics, query, folder_uri)
:cake:
FAQs
Simple Google Analytics API data extraction.
We found that freesixty 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.