
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
django-dnoticias-services
Advanced tools
from dnoticias_services.<module> import <function_name>
eg:
from dnoticias_services.communications import send_email
Authentication
create_user: Creates a new user in keycloak
create_user(email, first_name='', last_name='', enabled=True, email_verified=False, password=None, temporary_password=True, is_staff=False, is_superuser=False, max_sessions=2, send_email_to_user=False)
update_user: Updates an existing user in keycloak and backends
update_user(email, first_name='', last_name='', enabled=True, is_staff=False, is_superuser=False, max_sessions=2, update_attributes=True)
update_password: Updates an user password. Can send notification emails too.
update_password(email, password, temporary=False, send_email_to_user=False)
get_token: Gets an user token.
get_token(email, password)
refresh_token: Refresh an user token.
refresh_token(refresh_token)
logout_user: Logouts an user using his refresh token.
logout_user(refresh_token)
send_update_account: Sends an update action to the given account. I.e: UPDATE_PASSWORD
send_update_account(email, action)
keycloak_user_exists: Checks if a given email address exists on keycloak
keycloak_user_exists(email)
create_campaign
create_campaign(template_uuid, brand_group_uuid, newsletter_uuid, title, subject, context=dict(), from_email=None, from_name=None, track_opens=True, track_clicks=True, api_key=None, timeout=None)
send_campaign
send_campaign(template_uuid, brand_group_uuid, newsletter_uuid, title, subject, context=dict(), from_email=None, from_name=None, track_opens=True, track_clicks=True, api_key=None, timeout=None)
send_email
send_email(email, template_uuid, brand_group_uuid, subject, context=dict(), from_email=None, from_name=None, attachments=[], track_opens=True, track_clicks=True, api_key=None, timeout=None)
send_email_bulk
send_email_bulk(emails=[], template_uuid=None, brand_group_uuid=None, subject="", context=list(), from_email=None, from_name=None, attachments=[], track_opens=True, track_clicks=True, api_key=None, timeout=None)
Payments
Items
create_item Creates an item from dnoticias-payments via API
create_item(name, slug, price, active=True, extra_attrs=dict(), description="", images=dict(), shippable=False, interval=None, interval_count=None, trial_interval=None, trial_interval_count=None, offers=[], category=None, api_key=None, timeout=None)
update_item: Updates an item from dnoticias-payments via API
update_item(uuid, name=None, slug=None, extra_attrs=None, description=None, price=None, active=None, images=None, shippable=None, interval=None, interval_count=None, trial_interval=None, trial_interval_count=None, offers=None, category=None, api_key=None, timeout=None)
delete_item: Deletes an item from dnoticias-payments via API
delete_item(uuid, api_key=None, timeout=None)
get_item: Gets an item by its slug or accounting id
get_item(slug=None, accounting_id=None, api_key=None, timeout=None)
Orders
get_user_order_datatable: Gets all the user orders from dnoticias-payments. Works only with datatables.
get_user_order_datatable(request, user_email, api_key=None)
get_user_orders: Gets all the user orders from dnoticias-payments.
get_user_orders(user_email, api_key=None)
get_order_detail: Gets all the info for a given order.
get_order_detail(order_id, api_key=None)
Subscriptions
get_subscription: Get the subscription data for an user.
get_subscription(email, status, api_key=None, timeout=None)
Payments
setup_payment_intent: Setup a intent to add payment details to the customer or to the subscription
setup_payment_intent(email=None, subscription_id=None, api_key=None)
change_subscription_payment_method : Changes the default payment method of a subscription
change_subscription_payment_method(subscription_id, payment_method, api_key=None)
generate_payment_details : Generate a payment from email, item and the method
generate_payment_details(email, payment_provider_id, item_id=None, amount=None, api_key=None)
create_order: Creates a new order for a given user
create_order(context, api_key=None)
Coupons
get_coupon(coupon_remote_id, api_key=None)
get_suitable_coupons(item_remote_id, api_key=None)
Providers
get_payment_providers: Gets all the payment providers with status active created in dnoticias-payments.
get_payment_providers(request, api_key=None)
Utils
request_object: Replicates the request object from django. Used to datatables.
Same methods/attrs as the original request. Used to provide the request information to datatables because the original one is inmutable.
Subscriptions
get_user_notifications(email, api_key=None)
get_user_components(email, api_key=None)
get_subscriptions(api_key=None)
get_roles_select2(api_key=None)
get_roles(api_key=None)
delete_subscription_coupon(remote_id, api_key=None)
Authentication
Payments
Subscriptions
Editions
FAQs
Dnoticias Services
We found that django-dnoticias-services demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.