A Python tool to check if there is an Office 365 instance linked to a domain

o365chk.py Simple Python script to check if there is an Office365 instance linked to a particular domain. There are three possible results: Unknown = No O365 instance for that domainFederated = O365 is federatedManaged = O365 is managed directly by Microsoft Installation and Usage $ git clone https://github.com/nixintel/o365chk && cd o365chk $ pip install -r requirements.txt $ python3 o365chk.py -d example.com Example Output $ python3 o365chk.py -d bbc.co.uk This domain is Federated { “AuthNForwardType”: 1, “AuthURL”: “https://gateway.id.tools.bbc.co.uk/eiam/WSFederationServlet/metaAlias/wsidp2?username=username%40bbc.co.uk&wa=wsignin1.0&wtrealm=urn%3afederation%3aMicrosoftOnline&wctx=”, “CloudInstanceIssuerUri”: “urn:federation:MicrosoftOnline”, “CloudInstanceName”: […]

Read more

An OSINT tool that allows you to find potential profiles of a person on social networks

Profil3r Profil3r is an OSINT tool that allows you to find potential profiles of a person on social networks, as well as their email addresses. This program also alerts you to the presence of a data leak for the found emails. Installation Install with pip (recommended) pip3 install profil3r Or build from source Recommended for developers. It automatically clones the main branch from the Profil3r repo, and installs from source. # Automatically clone the Profil3r repository and install profil3r from […]

Read more

notebookJS: seamless JavaScript integration in Python Notebooks

notebookJS notebookJS enables the execution of custom JavaScript code in Python Notebooks (Jupyter Notebook and Google Colab). This Python library can be useful for implementing and reusing interactive Data Visualizations in the Notebook environment. notebookJS takes care of downloading and handling Javascript libraries and CSS stylesheets from the web. Furthermore, it supports bidirectional communication between Python and JavaScript. User interactions in HTML/JavaScript can trigger Python callbacks that process data on demand and send the results back to the front-end code. […]

Read more

Malawi News Classification -An NLP Project

Classifying Malawi News articles into 19 different classes using SMOTE and SGDClassifier. Introduction Text classification is common among the application that we use on daily basis. For example, email providers use text classification to filter out spam emails from your inbox. The other most common use of text classification is in customer care where they use sentimental analysis to differentiate bad reviews from good reviews ADDI AI 2050. The modern use of text classification list goes on as we have excelled to […]

Read more

Use heroicons in your Django and Jinja templates

heroicons Use heroicons in your Django and Jinja templates. Requirements Python 3.6 to 3.9 supported. Django 2.2 to 3.2 supported. Are your tests slow? Check out my book Speed Up Your Django Tests which covers loads of best practices so you can write faster, more accurate tests. Usage The heroicons package supports both Django templates and Jinja templates. Follow the appropriate guide below. Django templates Install with python -m pip install heroicons[django]. Add to your INSTALLED_APPS: INSTALLED_APPS = [ …, […]

Read more

A repository with scraping code and soccer dataset from understat.com

UNDERSTAT – SHOTS DATASET As many people interested in soccer analytics know, Understat is an amazing source of information. They provide Expected Goals (xG) stats for every shot taken in the top 5 leagues in Europe, as well as the Russian league. After watching an awesome tutorial by McKay Johns (great channel btw, loads of resources for beginners in soccer analytics), I decided to write some code to scrape all the shots data available at Understat. As a consequence I […]

Read more

Zero-Shot Voice Style Transfer with Only Autoencoder Loss

AutoVC This is an unofficial implementation of AutoVC based on the official one. The D-Vector and vocoder are from yistlin/dvector and yistLin/universal-vocoder respectively. This implementation supports torch.jit, so the full model can be loaded with simply one line: model = torch.jit.load(model_path) Pre-trained models are available here. Preprocessing python preprocess.py [–seg_len seg] [–n_workers workers] data_dir: The directory of speakers. save_dir: The directory to save the processed files. encoder_path: The path of pre-trained D-Vector. seg: The length of segments for training. workers: […]

Read more

Draw your telegram bot in draw.io and generate its code

drawyourbot Draw your bot is an open sourced project made to let people construct chat bots without coding or with minimal coding.You can just draw your chat bot logic in draw.io (http://diagrams.net/) and generate its code.This project will be most useful for those who need to make simple support or survey bot.It could also save some time for those who are building really complex bots. In that cases generated bot can bejust a start point. Install requirements First you need […]

Read more

Learning Multimodal Violence Detection under Weak Supervision

XDVioDet Official implementation of “Not only Look, but also Listen: Learning Multimodal Violence Detection under Weak Supervision” ECCV2020. The project website is XD-Violence. The features can be downloaded from our project website. where we oversample each video frame with the “5-crop” augment, “5-crop” means cropping images into the center and four corners. _0.npy is the center, _1~ _4.npy is the corners. How to train download or extract the features. use make_list.py in the list folder to generate the training and […]

Read more
1 520 521 522 523 524 927