Bootstrap 4 integration with Django

Bootstrap 4 integration for Django. Goal The goal of this project is to seamlessly blend Django and Bootstrap 4. Requirements Python 3.6 or newer with Django >= 2.2 or newer. Documentation The full documentation is at https://django-bootstrap4.readthedocs.io/ Installation Install using pip: pip install django-bootstrap4 Alternatively, you can install download or clone this repo and call pip install -e .. Add to INSTALLED_APPS in your settings.py:    

Read more

A python wrapper for the PESQ score calculation C routine

Pypesq is a python wrapper for the PESQ score calculation C routine. It only can be used in evaluation purpose. INSTALL pip install https://github.com/vBaiCai/python-pesq/archive/master.zip or pip install pypesq HOW TO USE import soundfile as sf from pypesq import pesq ref, sr = sf.read(…) deg, sr = sf.read(…) score = pesq(ref, deg, sr) print(score) OWNERS of PESQ ARE: British Telecommunications plc (BT), all rights assigned to Psytechnics Limited Royal KPN NV, all rights assigned to OPTICOM GmbH More test. I’m not […]

Read more

PEP-484 stubs for Django

This package contains type stubs and a custom mypy plugin to provide more precise static types and type inference for Django framework. Django uses some Python “magic” that makes having precise types for some code patterns problematic. This is why we need this project. The final goal is to be able to get precise types for most common patterns. Installation To make mypy aware of the plugin, you need to add [mypy] plugins = mypy_django_plugin.main [mypy.plugins.django-stubs] django_settings_module = “myproject.settings” in […]

Read more

Python interface to the WebRTC Voice Activity Detector

py-webrtcvad This is a python interface to the WebRTC Voice Activity Detector (VAD). It is compatible with Python 2 and Python 3. A VAD classifies a piece of audio data as being voiced or unvoiced. It can be useful for telephony and speech recognition. The VAD that Google developed for the WebRTC project is reportedly one of the best available, being fast, modern and free. How to use it Install the webrtcvad module: pip install webrtcvad Create a Vad object: […]

Read more

An open source embedded speech-to-text engine which can run in real time on devices ranging from a Raspberry Pi 4 to high power GPU servers

DeepSpeech is an open-source Speech-To-Text engine, using a model trained by machine learning techniques based on Baidu’s Deep Speech research paper. Project DeepSpeech uses Google’s TensorFlow to make the implementation easier. Documentation for installation, usage, and training models are available on deepspeech.readthedocs.io. For the latest release, including pre-trained models and checkpoints, see the latest release on GitHub. For contribution guidelines, see CONTRIBUTING.rst. For contact and support information, see SUPPORT.rst. GitHub https://github.com/mozilla/DeepSpeech    

Read more

Build a Content Aggregator in Python

In this project-based tutorial, you’ll build a content aggregator from scratch using Python and the popular framework Django. With so much content coming out online daily, it can be time consuming to go to multiple sites and sources to consume information about your favorite subjects. This is why content aggregators are so popular and powerful, as you can use them to view all the latest news and content in one place. Whether you’re looking for a portfolio project or ways […]

Read more

Rename Images with Auto Generated Neural Image Captions

Example Usage: Commandline: Recaption all images from folder /home/feng/Downloads/images to folder /home/feng/Downloads/recaptioned_images. python3 ./recaption_images.py -i /home/feng/Downloads/images -o /home/feng/Downloads/recaptioned_images Python: from recaption_images import recaption_images recaption_images( ‘/home/feng/Downloads/images’, ‘/home/feng/Downloads/recaptioned_images’ ) # the first argument is for the input image folder, the second argument is for the output image folder The images names in the input folder

Read more

A software dedicated to automaticaly select the agent of your desire in Valorant

A software dedicated to automaticaly select the agent of your desire in Valorant Before stariting to use this program check if you have installed the libraries needed for this program wich are: pyautogui keyboard tkinter Now that you have all the libraries needed is as easy to run the program Any ideas or modificatios will be thanked Progam in development a lot of agents are missing I dont responsabilice if Riot clasifies this program as a hack and ban you. […]

Read more

JupyterLite as a Datasette plugin

JupyterLite as a Datasette plugin Installation Install this plugin in the same environment as Datasette. $ datasette install datasette-jupyterlite Usage Once installed, visit /jupyterlite/ to access JupyterLite served from your Datasette instance. Development To set up this plugin locally, first checkout the code. Then create a new virtual environment: cd datasette-jupyterlite python3 -mvenv venv source venv/bin/activate Or if you are using pipenv: Now install the dependencies and test dependencies: To run    

Read more

Repo used to maintain all notes and scripts developed during my DevNet Expert studies

Exam Date: TBD (Waiting for registration to open) This repository will be used to track my progress and maintain all notes/scripts/apps developed during my Cisco DevNet Expert studies.Along with labbing, I’ll also be reading a few books to prepare for the DevNet Expert Lab exam. I am providing a list of the books I’mreading below, and will be checking them off as I knock them out. I’ll also be using plenty of online resources and will try to includelinks to […]

Read more
1 421 422 423 424 425 974