
Security News
The Nightmare Before Deployment
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.
loldb
Advanced tools
Lol is a database library
See the database documentation here
See all the datatype methods here
from lol.datatypes.arrays import Array
array = Array(int, length=None)
from lol.datatypes.maps import Maps
maps = Maps((int, str))
from lol.datatypes.interface import Interface
data = Interface({
name : [str, int],
age : "?" # any,
})
# create an interface object
obj = data.create("Pranav", 13)
# gives you the name
print(obj.get_item('name'))
# change the value
obj.set_item('name', 'new-name')
from lol.datatypes.number import Number
num = Number("777")
from lol.datatypes.string import String
string = String(7777)
lol-create-project
from lol.prompt import Prompt
data = Prompt("Name", type=str).prompt()
<<<<<<< HEAD
from lol.argparse import Parser
import sys
def get(data):
print(data)
def delete(data):
print(data)
p = Parser([
{
"value" : "install $package",
"types" : {
"package" : str
},
"func" : get
},
{
"value" : "delete $package",
"types" : {
"package" : str
},
"func" : delete
}
])
p.parse()
=======
Under development
21da2c171f7b29ae400e1cdf9ff786edb9279b8b
FAQs
A simple json database and other utilities
We found that loldb 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
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.

Research
/Security News
Impostor NuGet package Tracer.Fody.NLog typosquats Tracer.Fody and its author, using homoglyph tricks, and exfiltrates Stratis wallet JSON/passwords to a Russian IP address.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.