Libraries for creating and controlling interactive web pages with Python

IDOM Libraries for creating and controlling interactive web pages with Python 3.7 and above. Try it Now Click the badge above to get started! It will take you to a Jupyter Notebookshosted by Binder with some great examples. Or Install it Now pip install idom[stable] IDOM can be used to create a simple slideshow which changes whenever a user clicks an image. import idom @idom.component def Slideshow(): index, set_index = idom.hooks.use_state(0) url = f”https://picsum.photos/800/300?image={index}” return idom.html.img({“src”: url, “onClick”: lambda event: […]

Read more

Implementation of Artificial Neural Network Algorithm

Artificial Neural Network This repository contain implementation of Artificial Neural Network Algorithm in several programming languanges and frameworks. This repository was created to introduce artifical neural network in a simple way. Artificial Neural Network has become popular at this time. This branch field of Artificial Intelligence has given powerful impact to our daily life such as social media recomendation system, face detection of camera on phone and many more. Therefore, to keep up our knowledge in technology especially Artificial Intelligence, […]

Read more

A simple weather tool made with python

wwy A simple weather tool made with python, API, and PyPi packaging. Installation # Unix-like pip3 install wwy # Windows pip install wwy Usage # wwy wwy tokyo # wwy wwy tokyo,jp # wwy -u wwy tokyo -u imperial Update # Unix-like pip3 install –upgrade wwy # Windows pip install –upgrade wwy Credits GitHub https://github.com/clieg/wwy    

Read more

The Python Toolbox for Neurophysiological Signal Processing

NeuroKit The Python Toolbox for Neurophysiological Signal Processing This package is the continuation of NeuroKit 1. It’s a user-friendly package providing easy access to advanced biosignal processing routines. Researchers and clinicians without extensive knowledge of programming or biomedical signal processing can analyze physiological data with only two lines of code. Quick Example import neurokit2 as nk # Download example data data = nk.data(“bio_eventrelated_100hz”) # Preprocess the data (filter, find peaks, etc.) processed_data, info = nk.bio_process(ecg=data[“ECG”], rsp=data[“RSP”], eda=data[“EDA”], sampling_rate=100) # Compute […]

Read more

A Python package for Bayesian time series forecasting and inference

orbit A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood. This project is stable and being incubated for long-term support. It may contain new experimental code, for which APIs are subject to change. requires PyStan as a system dependency. PyStan is licensed under GPLv3, which is a free, copyleft license for software. Orbit is a Python package for Bayesian time series forecasting and inference. It provides afamiliar and intuitive initialize-fit-predict interface for time series […]

Read more

A Python tool for the generation of geological data of minerals

GebPy Open-source, Python-based tool for the synthetic generation of geological data with focus on minerals, rocks and stratigraphy. developed by Maximilian A. Beeskow GebPy is an open-source, Python-based tool for the synthetic generation of geological data with focus on minerals, rocks and stratigraphy. The main assumption of GepPy is that all rock properties are determined by the mineral assemblage besides structural features. GebPy can be used for educational purposes, for example by the generation of mineralogical data that could be […]

Read more

Help you find the weather of your favorite cities with python

Weather-App A service made with Flask and Python to help you find the weather of your favorite cities. Features Backend using Flask and Jinja Weather API to get the current weather data from all over the world Database to store city names and pictures with SQLite and SQLAlchemy Automatic web scrapping to find pictures of the cities Simple error messages Interactive page made with HTML, CSS, JavaScript and JQuery GitHub https://github.com/cau777/Weather-App    

Read more

A tool to easily scrape youtube data using the Google API

YouTube data scraper To easily scrape any data from the youtube homepage, a youtube channel/user, search results, playlists, and a single video itself. Requires Python 3.6+ Installing $ pip3 install -r requirements.txt $ python3 Web-Youtube.py -h Works with: YouTube Homepage, youtube search, channel/user, video, and playlists Usage: Web-Youtube.py [OPTIONS] –link YouTube link –api Google/YouTube API key –comments Get comments from YouTube videos [turning on will increase program run time] –subtitles Get subtitles from YouTube videos –durationseconds Get seconds from YouTube […]

Read more

Build a Blog Using Django, Vue, and GraphQL

Are you a regular Django user? Do you find yourself wanting to decouple your back end and front end, handling data persistence in the API while displaying the data in a client-side framework like React or Vue displays that data, in a single-page app (SPA) in the browser? You’re in luck. This tutorial will take you through the process of building a Django blog back end and a Vue front end, using GraphQL to communicate between them. Projects are an […]

Read more

Top 8 Python Libraries For Natural Language Processing (NLP) in 2021

This article was published as a part of the Data Science Blogathon. Introduction Natural language processing (NLP) is a field situated at the convergence of data science and Artificial Intelligence (AI) that – when reduced to the basics – is all about teaching machines how to comprehend human dialects and extract significance from the text. This is additionally why Artificial Intelligence is regularly essential for NLP projects. So what’s the reason, why many companies care about NLP? Basically in light […]

Read more
1 621 622 623 624 625 912