All Projects → sijis → Sumologic Python

sijis / Sumologic Python

Licence: apache-2.0
Sumologic's python api library

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Sumologic Python

Fosite
Extensible security first OAuth 2.0 and OpenID Connect SDK for Go.
Stars: ✭ 1,738 (+28866.67%)
Mutual labels:  library, sdk
Colore
A powerful C# library for Razer Chroma's SDK
Stars: ✭ 121 (+1916.67%)
Mutual labels:  library, sdk
Itext7
iText 7 for Java represents the next level of SDKs for developers that want to take advantage of the benefits PDF can bring. Equipped with a better document engine, high and low-level programming capabilities and the ability to create, edit and enhance PDF documents, iText 7 can be a boon to nearly every workflow.
Stars: ✭ 913 (+15116.67%)
Mutual labels:  library, sdk
Sdkhotfix
在用户规模千万级别的app中验证过,稳定无兼容问题,5分钟让你的SDK拥有热修复能力。A SDK hotfix library with stable verified in tens of millions of users can be accessed in only five minutes.
Stars: ✭ 585 (+9650%)
Mutual labels:  library, sdk
Decentralized Internet
A SDK/library for decentralized web and distributing computing projects
Stars: ✭ 406 (+6666.67%)
Mutual labels:  library, sdk
Sdk
Library for using Grafana' structures in Go programs and client for Grafana REST API.
Stars: ✭ 193 (+3116.67%)
Mutual labels:  library, sdk
Amadeus Node
Node library for the Amadeus Self-Service travel APIs
Stars: ✭ 91 (+1416.67%)
Mutual labels:  library, sdk
Newnode
NewNode decentralized Content Distribution Network
Stars: ✭ 223 (+3616.67%)
Mutual labels:  library, sdk
Librealsense
Intel® RealSense™ SDK
Stars: ✭ 5,652 (+94100%)
Mutual labels:  library, sdk
Itext7 Dotnet
iText 7 for .NET is the .NET version of the iText 7 library, formerly known as iTextSharp, which it replaces. iText 7 represents the next level of SDKs for developers that want to take advantage of the benefits PDF can bring. Equipped with a better document engine, high and low-level programming capabilities and the ability to create, edit and enhance PDF documents, iText 7 can be a boon to nearly every workflow.
Stars: ✭ 698 (+11533.33%)
Mutual labels:  library, sdk
Vlany
Linux LD_PRELOAD rootkit (x86 and x86_64 architectures)
Stars: ✭ 804 (+13300%)
Mutual labels:  library
Morph Bottom Navigation
This library represents a Bottom Navigation with an awesome morph effect on top of the selected item
Stars: ✭ 803 (+13283.33%)
Mutual labels:  library
Sdk
The Dart SDK, including the VM, dart2js, core libraries, and more.
Stars: ✭ 7,539 (+125550%)
Mutual labels:  sdk
Rulerz
Powerful implementation of the Specification pattern in PHP
Stars: ✭ 827 (+13683.33%)
Mutual labels:  library
M3u8
Parser and generator of M3U8-playlists for Apple HLS. Library for Go language. 🎦
Stars: ✭ 800 (+13233.33%)
Mutual labels:  library
Themoviedb
A node.js module with support for both callbacks and promises to provide access to the TMDb API
Stars: ✭ 5 (-16.67%)
Mutual labels:  sdk
Botframework Sdk
Bot Framework provides the most comprehensive experience for building conversation applications.
Stars: ✭ 6,673 (+111116.67%)
Mutual labels:  sdk
Slim.js
Fast & Robust Front-End Micro-framework based on modern standards
Stars: ✭ 789 (+13050%)
Mutual labels:  library
Yasumi
The easy PHP Library for calculating holidays
Stars: ✭ 788 (+13033.33%)
Mutual labels:  library
Experiment
🔬 Elixir Library for carefully refactoring critical paths by performing experiments.
Stars: ✭ 6 (+0%)
Mutual labels:  library

.. image:: https://travis-ci.org/sijis/sumologic-python.svg?branch=master :target: https://travis-ci.org/sijis/sumologic-python

sumologic-python

Sumologic's python api library

The library currently supports the following features:

  • search
  • collectors

.. code-block:: python

from sumologic import Client, Collectors, Search

# Need a client to authenticate to service
client = Client(auth=('username', 'password'))

# collector usage
collector = Collectors(client)
for c in collector.get_collectors():
    print('{0}:{1}'.format(c['name'], c['alive']))

# find and delete a collector
c = collector.find('logserver')
c.delete()

# search usage
search = Search(client)
results = search.query('log1', formats='json')
print(results)

To see the library in use, go to sumologic-cli_ repo.

.. _sumologic-cli: https://github.com/sijis/sumologic-cli

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].