Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Protect your application's sensitive data with Absio's Secured Containers.
Documentation
Full documentation is `available <https://absio.readthedocs.io>`_.
Obtaining an API Key
The absio
library requires a valid API Key that must be passed into the
absio.initialize(...)
function. Obtain an API Key by contacting us
here <https://www.absio.com/contact>
_ or sending an email to sales@absio.com. An API key should
be considered private and protected as such.
Quick Start
Installation:
.. code:: python
pip install absio cryptography --no-binary=cryptography
Import and initialize the module:
.. code:: python
import absio
absio.initialize(api_key='your api key')
Create accounts:
.. code:: python
alice = absio.user.create('password', 'reminder', 'passphrase')
bob = absio.user.create('password', 'reminder', 'passphrase')
Log in with an account:
.. code:: python
absio.login(alice.id, 'password', 'passphrase')
Create and share an Absio Secured Container:
.. code:: python
container = absio.container.create(
header={'some sensitive metadata': None},
content=open('/some/sensitive/data.bin', 'rb').read(),
access=[bob.id, alice.id],
)
Securely access this container from another system:
.. code:: python
absio.login(bob.id, 'password', 'passphrase')
# Access the container with the container ID returned during creation, or a Container Event.
container = absio.container.get('container_id')
FAQs
Python Absio Library
We found that absio 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.