Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

alertnow-python

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alertnow-python

This package used for logging information and errors.

  • 1.3.3
  • PyPI
  • Socket score

Maintainers
1

AlertNow Python

This package used for logging information or errors.

#Installation pip install AlertNow-Python

#How to use it? First, you need to register with sign-up remote API and get the api key on the site. After, you must initialize connection using set_api_key and you can initialize host, user and tags data using set_host, set_user, set_tag method. And you can use info or error methods.

#Example

from logger.src.logger import set_host, set_api_key, set_user, set_tag, info, error
from logger.src.common.dto.user import User
from logger.src.common.dto.userGeo import UserGeo
import jsonpickle

def execute_method():
    set_host('http://localhost:8080')
    set_api_key('b4984c8de7f14b2f86f8e036456fd60c')
    set_tag('os.name', 'python OS')
    set_user(User(
        "13213231",
        "111.11.1.11",
        UserGeo(
            "1044",
            "Baku",
            "Gadabay"
        )
    ))

    response = info('hi from python env')
    print(response.status_code)
    print(jsonpickle.encode(response))

execute_method()

Keywords

FAQs


Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc