
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
A python wrapper that connects to multiple 3rd party resources for AWS.
The GoogleAnalyticsTap connects to the v4 GA api and returns data from Google Analytics.
batch_dates: 'bool. enables batching of queries by date'
start_date: 'str. "yesterday", "today",  "3_days_ago" or "2020-01-01" etc...'
end_date: 'str. "yesterday", "today",  "3_days_ago" or "2020-01-01" etc...'
metrics:
  - expression: 'str. metric name'
dimensions:
  - name: 'str. dimension name'
pageSize: 'int. page size, defaults to 1000'
view_ids:
  - 'str. a list of view to iterate over'
from datetime import datetime
import pandas as pd
from data_tap.google_tap.google_analytics import GoogleAnalyticsTap
ga_tap = GoogleAnalyticsTap(
    config_file='',
    creds_file='',
    auth_method='',
    service_account_email=''
)
dfA = pd.DataFrame()
for report in ga_tap.run_query():
    dfB = pd.DataFrame(report)
    dfA = dfA.append(dfB, ignore_index=True)
dfA.to_json(f"{datetime.utcnow()}.json")
The GoogleSearchConsoleTap connects to the v3 GSC api and returns data from Google Search Console. Functionality to generate an authentication token is available.
batch_dates: 'bool. enables batching of queries by date'
start_date: 'str. "yesterday", "today",  "3_days_ago" or "2020-01-01" etc...'
end_date: 'str. "yesterday", "today",  "3_days_ago" or "2020-01-01" etc...'
dimensions:
  - 'str. dimension name'
metrics:
  - 'str. metric name'
search_types:
  - 'str. available gsc search types'
site_urls:
  - 'str. website urls in question'
row_limit: 'int. max row limit is 25000'
from datetime import datetime
import pandas as pd
from data_tap.google_tap.google_seach_console import GoogleSeachConsoleTap
gsc_tap = GoogleSeachConsoleTap(
    config_file='',
    creds_file='.pickle'
)
dfA = pd.DataFrame()
for report in gsc_tap.run_query():
    dfB = pd.DataFrame(report)
    dfA = dfA.append(dfB, ignore_index=True)
dfA.to_json(f"{datetime.utcnow()}.json")
FAQs
A python wrapper that connects to multiple 3rd party resources for AWS.
We found that data-tap 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
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.