![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Stackzilla is a Python ORM for managing application infrastructure and software. Stackzilla's object-oriented design allows for complete customization by the developer, if that level of customization is needed. For simpler deployments, Stackzilla offers an incredibly easy interface for Python developers to work with.
Install and update using pip.
pip install -U stackzilla
View the Stackzilla PyPI package here.
Check out our getting started guide for installation and usage.
Here is a simple blueprint definition for a server on Linode.
import os
from stackzilla.resource.ssh_key import StackzillaSSHKey
from stackzilla.provider.linode.instance import LinodeInstance
# This is our personal access token for interacting with the Linode API
LinodeInstance.token = os.getenv('STACKZILLA_LINODE_TOKEN')
class MyKey(StackzillaSSHKey):
def __init__(self) -> None:
super().__init__()
self.key_size = 2048
class MyServer(LinodeInstance):
def __init__(self):
super().__init__()
self.region = 'us-east'
self.type = 'g6-nanode-1'
self.image = 'linode/alpine3.12'
self.label = 'Stackzilla_Test-Linode.1'
self.tags = ['testing']
self.private_ip = False
self.ssh_key = MyKey
All support requests are handled through GitHub Discussions. Please only open a GitHub issue if you've found a bug, or have a feature request.
To get started with contributing to the Stackzilla project, visit the developer documentation. Thank you for your interest!
Stackzilla is licensed under the GNU Affero General Public License v3.0 license See LICENSE for more information.
FAQs
An ORM for your application stack.
We found that stackzilla 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.