Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoSign in
Socket

wwwpy

Package Overview
Dependencies
Maintainers
1
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wwwpy - pypi Package Compare versions

Comparing version
0.1.83
to
0.1.84
+1
-1
PKG-INFO
Metadata-Version: 2.4
Name: wwwpy
Version: 0.1.83
Version: 0.1.84
Summary: Build Powerful Web Applications: Simple, Scalable, and Fully Customizable

@@ -5,0 +5,0 @@ Author-email: Simone Giacomelli <simone.giacomelli@gmail.com>

# https://packaging.python.org/en/latest/tutorials/packaging-projects/
[project]
name = "wwwpy"
version = "0.1.83"
version = "0.1.84"

@@ -6,0 +6,0 @@ # todo

Metadata-Version: 2.4
Name: wwwpy
Version: 0.1.83
Version: 0.1.84
Summary: Build Powerful Web Applications: Simple, Scalable, and Fully Customizable

@@ -5,0 +5,0 @@ Author-email: Simone Giacomelli <simone.giacomelli@gmail.com>

@@ -1,3 +0,3 @@

__version__ = "0.1.83"
git_hash_short = "fe7a10f"
git_hash = "fe7a10f88ae3bb9935933995e1f38096bb16855d"
__version__ = "0.1.84"
git_hash_short = "c60234a"
git_hash = "c60234a464cf22b965302728367cedb8d23374e9"

@@ -107,3 +107,3 @@ from __future__ import annotations

if isinstance(value, attribute):
cls.component_metadata.observed_attributes.add(name)
cls.component_metadata.observed_attributes.add(value.name)

@@ -282,4 +282,4 @@ if auto_define:

def __init__(self):
self.name = None
def __init__(self, name: str | None = None):
self.name = name

@@ -289,3 +289,4 @@ def __set_name__(self, owner, name):

raise Exception(f'attribute {name} must be in a subclass of {Component.__qualname__}')
self.name = name
if self.name is None:
self.name = name

@@ -292,0 +293,0 @@ def __get__(self, obj: Component, objtype=None):

@@ -75,2 +75,3 @@ import logging

await _run_sync_in_thread(lambda: quickstart.setup_quickstart(Path(root), quickstart_name))
await asyncio.sleep(0.3)
logger.info(f'Quickstart applied {quickstart_name} to {root}')

@@ -77,0 +78,0 @@ return 'Quickstart applied'