Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Django application for creating the tree structure in the model (very fast structure).
To create a new item in the tree need only choose a parent. The key (id) for the new item will be calculated automatically. You can get a list of the parents and the range of children without a database query.
Implemented to create a new item, delete the item, transfer item to the other parent (and the transfer of the group).
Description of the algorithm for constructing the tree can be found habr.ru
_ or in the wiki
_ (in Russian)
.. _habr.ru: http://habrahabr.ru/post/166699/
.. _wiki: https://github.com/EvgeniyBurdin/django_treensl/wiki
This app is available on PyPI
_.
.. _PyPI: https://pypi.python.org/pypi/django-treensl/
Supports Django
_ 1.8 and later on Python 2.7,
3.2 - 3.5.
Works only with PostgreSQL 9.1 and later!
.. _Django: http://www.djangoproject.com/
Clone this
_ repository. The is an example of a project (app myapp
use treensl
)
.. _this: https://github.com/EvgeniyBurdin/django_treensl
Change the settings for connecting to the correct PostgreSQL DB.
or:
pip install django-treensl
Add app treensl
in settings.py
Create a new class of models from Tree32Abstract
or Tree64Abstract
(from treensl.models
). Add your field in the model (for their fields, do not use the following names: id
, parent_id
, lvl
, created_children
, removed_children
, holes
). If necessary, change the dimension of the default tree (properties LEVELS
and CHILDREN
). For example see myapp/models.py
_
Run python manage.py makemigrations
The new file migration, add the 3 lines as in the example file myapp/migrations/0001_initial.py
_ (the rows are marked with comments # add after makemigrations
)
.. _myapp/models.py: https://github.com/EvgeniyBurdin/django_treensl/blob/master/myapp/models.py
.. _myapp/migrations/0001_initial.py: https://github.com/EvgeniyBurdin/django_treensl/blob/master/myapp/migrations/0001_initial.py
Before executing the migrate
you can adjust the settings tree. The dimension of the tree depends on the length integer
.
Recommended values (in the format LEVELS/CHILDREN/ROOT_ID
):
For int32: 3/1623/-2147483648
, 4/255/-2147483648
, 5/83/-2147483648
, 6/39/-2147483648
For int64: 3/2642243/-9223372036854775808
, 4/65535/-9223372036854775808
, 5/7129/-9223372036854775808
, 6/1623/-9223372036854775808
, 7/563/-9223372036854775808
, 8/255/-9223372036854775808
, 9/137/-9223372036854775808
, 10/83/-9223372036854775808
Run python manage.py migrate
Now, to create a new item in the tree need only choose a parent. The key (id) for the new item will be calculated automatically.
You can get a list of the parents and the range of children without a database query.
For any id
call functions from the treensl.calc_values
_:
parents_list(id, LEVELS, CHILDREN, ROOT_ID)
- returns a list of the first to the last parent
children_range(id, LEVELS, CHILDREN, ROOT_ID)
- returns a list of the range of children
LEVELS
, CHILDREN
, ROOT_ID
- settings current tree
.. _treensl.calc_values: https://github.com/EvgeniyBurdin/django_treensl/blob/master/treensl/calc_values.py
FAQs
Django application to the tree structure in the model.
We found that django-treensl 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.