
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
github.com/sfomuseum/go-csvdict
Go package to implement a "dict reader" style CSV parser (on top of the default encoding/csv
package) to return rows a key-value dictionaries rather than lists.
import (
"github.com/whosonfirst/go-csvdict"
"os"
)
reader, reader_err := csvdict.NewReaderFromPath("example.csv")
// or maybe you might do
// reader, err := csvdict.NewReader(os.Stdin)
if err != nil {
panic(err)
}
for {
row, err := reader.Read()
if err == io.EOF {
break
}
if err != nil {
return err
}
value, ok := row["some-key"]
// and so on...
}
import (
"github.com/whosonfirst/go-csvdict"
"os"
)
fieldnames := []string{"foo", "bar"}
writer, err := csvdict.NewWriter(os.Stdout, fieldnames)
// or maybe you might do
// writer, err := csvdict.NewWriterFromPath("new.csv", fieldnames)
if err != nil {
panic(err)
}
writer.WriteHeader()
row := make(map[string]string)
row["foo"] = "hello"
row["bar"] = "world"
// See this? "baz" is not included in the list of fieldnames
// above so it will be silently ignored and excluded from your
// CSV file. Perhaps it should trigger an error. It doesn't, today...
row["baz"] = "wub wub wub"
writer.WriteRow(row)
FAQs
Unknown package
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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.