
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
.. image:: https://img.shields.io/pypi/v/anji-orm.svg :target: https://pypi.python.org/pypi/anji-orm .. image:: https://img.shields.io/pypi/l/anji-orm.svg :target: https://pypi.python.org/pypi/anji-orm .. image:: https://gitlab.com/AnjiProject/anji-orm/badges/master/build.svg :target: https://gitlab.com/AnjiProject/anji-orm
:code:anji_orm
simple ORM for RethinkDB
:code:anji_orm
is available as a python library on Pypi. Installation is very simple using pip :
.. code:: bash
$ pip install anji_orm
This will install :code:anji_orm
as well as external dependency.
ORM registry should be initiated before usage:
.. code:: python
# For sync usage
register.init(dict(db='test'))
register.load()
# Or for async usage
register.init(dict(db='test'), async_mode=True)
await register.async_load()
That, create some model
.. code:: python
class T1(Model):
_table = 't2'
a1 = StringField()
a2 = StringField()
t2 = T1(a1='b', a1='c')
t2.send()
# or for async usage
await t2.async_send()
FAQs
RethinkDB based ORM
We found that anji-orm 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.