
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
This API is considered a work in progress and can change at any moment.
The latest release is available on PyPI:
python3 -m pip install educelab-hercdb
from educelab import hercdb
uri = "neo4j://localhost:7687"
user = "foo"
password = "bar"
db = hercdb.connect(uri, user, password)
if db.verify_connection():
print("Connected!")
If not provided when calling hercdb.connect()
, this package will attempt to
read the URI, username, and password from the configuration file at ~/.hercdb
.
This file is expected to be in the TOML format:
[database]
uri = "neo4j://localhost:7687"
username = "foo"
password = "bar"
The section header is optional, and only the information from the first section
will be read. In the future, sections may be used to differentiate multiple
database servers. Note: In Python 3.10, the configuration file is loaded
using configparser
, which does not support the full TOML syntax.
Alternatively, the server information can be provided by exporting the following environment variables:
export EDUCEDB_URI='neo4j://localhost:7687'
export EDUCEDB_USER=foo
export EDUCEDB_PASSWORD=bar
Environment variables take priority over the configuration file.
As a convenience, this package provides the hercdb.config.request_required()
method, which will check for configuration values in the environment and
the configuration file and prompt for any which have not been provided:
>>> hercdb.config.request_required()
Enter URI: neo4j://localhost:7687
Enter username: foo
Enter password:
FAQs
Graph database API for Herculaneum data
We found that educelab-hercdb 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
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.