Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
mixpanel-data-export
Advanced tools
A wrapper for Mixpanel's data export API. Simply instantiate the class with your API secret and key and then make calls to api methods and get json back.
Simply put, this is a coffeescript class that makes Mixpanel's data export API easy to use. Simply instantiate the class with your API secret and key and then make calls to api methods and get objects back.
If you don't use coffeescript, I've put the source through js2coffee for a Javascript version, and also provided a minified Javascript version. These should work in exactly the same way.
Currently, this requires the following libraries:
Every method detailed on mixpanel's data export api page is available in the library.
Coffeescript Implementation
panel = new MixpanelExport
api_key: "my_api_key"
api_secret: "my_api_secret"
call_params =
from_date: "2013-06-13"
to_date: "2013-06-29"
born_event: "Rendering items"
panel.retention(call_params).done (data) ->
console.log data
JavaScript Implementation
panel = new MixpanelExport({
api_key: "my_api_key",
api_secret: "my_api_secret"
});
result = panel.retention({
from_date: "2013-06-13",
to_date: "2013-06-29",
born_event: "Rendering items"
});
result.done(function (data) {
console.log(data);
});
A full list of available API methods is detailed on mixpanel's data export api page. If you find any that are missing please let me know, or better yet put in a pull request.
FAQs
A wrapper for Mixpanel's data export API. Simply instantiate the class with your API secret and key and then make calls to api methods and get json back.
We found that mixpanel-data-export demonstrated a not healthy version release cadence and project activity because the last version was released 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.