Reading and Writing Files With Pandas

Pandas is a powerful and flexible Python package that allows you to work with labeled and time series data. It also provides statistics methods, enables plotting, and more. One crucial feature of Pandas is its ability to write and read Excel, CSV, and many other types of files. Functions like the Pandas read_csv() method enable you to work with files effectively. You can use them to save the data and labels from Pandas objects to a file and load them […]

Read more

Predict the next word of your text using Long Short Term Memory (LSTM)

This article was published as a part of the Data Science Blogathon Introduction: https://sm.mashable.com/t/mashable_in/photo/default/shutterstock-1208129407_trm5.960.jpg Natural language processing has been an area of research and used widely in different applications. We often love texting each other and find that whenever we try to type a text a suggestion poops up trying to predict the next word we want to write. This process of prediction is one of the applications NLP deals with. We have made huge progress here and we can use […]

Read more

A Code that can make your Discord Account 24/7 on Voice Channels

Make your Discord Account Online 24/7 on Voice Channels! A Code written in Python that helps you to keep your account 24/7 on Voice Channels. • Fork the repo • Clone it to replit • Install the Self-Bot Package : pip install discord.py-self • Install PyNaCl using the Package Manager I would really suggest you to watch this video before installing. The main.py is the main file. keep_alive.py prevents your repl from going to sleep. (If you have a replit […]

Read more

A next gen powerful telegram group manager bot

EzilaX v1 Unmaintained. The new repo of @EzilaXBot is Public.(It is no longer based on this source code. The completely rewritten bot available now on telegram) A Powerful, Smart And Simple Group Manager… Written with AioGram , Pyrogram and Telethon… Self-hosting (For Devs) ⚔ # Install Git First (apt-instll git) $ git clone https://github.com/sadew451/EzilaXBot-v2 $ cd EzilaX # Upgrade sources $ bash deploy.sh # Install All Requirements $ pip3 install -r requirements.txt # Rename ./EzilaX/data/bot_conf.yaml.example to bot_conf.yaml and fill # […]

Read more

User customizable firmware for custom fightsticks

OpenStickFirmware OpenStickFirmware is open source software designed to handle any and all tasks required in a custom Fight Stick. It can handle being the brains of your entire stick, or just handling the bells and whistles while your Brook board talks to your console. About The Project OSF is built with CircuitPython and intended to run on any board it supports. Not only does this make the customization process friendlier for non-developers, but it also means a significant amount of […]

Read more

Facebook Chat (Messenger) for Python

fbchat This project is unmaintained This project is officially marked as unmaintained, since my life is somewhere where I just do not have the time and energy to lead this project. If there is someone out there willing to take the lead, please get in contact, but even if there is, I can’t get in contact with the original author @carpedm20 and get the ability to add others as maintainers, see issue 390. So a fork might be preferable. I […]

Read more

A python open source Internet Download Manager with multi-connections

FireDM FireDM is a python open source (Internet Download Manager) with multi-connections, high speed engine, it downloads general files and videos from youtube and tons of other streaming websites .Developed in Python, based on “LibCurl”, and “youtube_dl”. Features: High download speeds “based on LibCurl” –See Speed test of: aria2 vs FireDM Multi-connection downloading “Multithreading” Automatic file segmentation. Automatic refresh for dead links. Resume uncompleted downloads. Support for Youtube, and a lot of stream websites “using youtube-dl to fetch info and […]

Read more

A Vietnamese personal card OCR website built with Django

Django VietCardOCR A Vietnamese personal card OCR website built with Django. Installation Creation of virtual environments is done by executing the command venv: python -m venv venv That will create a new folder env in your project directory. Next activate it with this command on mac/linux: source venv/bin/active Use the package manager pip to install requirements: pip install -r requirements.txt In the project folder, create media folder and its subfolders as structure below: ├───media │ └───images │ ├───driving-license │ ├───id-card […]

Read more

A python tool parses log data and allows to define analysis pipelines for anomaly detection

logdata-anomaly-miner This tool parses log data and allows to define analysis pipelines for anomaly detection. It was designed to run the analysis with limited resources and lowest possible permissions to make it suitable for production server use. Requirements In order to install logdata-anomaly-miner a Linux system with python >= 3.6 is required. Debian-based distributions are currently recommended. See requirements.txt for further module dependencies Installation Debian There are Debian packages for logdata-anomaly-miner in the official Debian/Ubunturepositories. apt-get update && apt-get install […]

Read more
1 23 24 25 26 27 51