Genetic Algorithm for Assignment Problem

A priority of preferences for teacher assignment problem Keywords k-partition; clustering; education 4.0 Abstract According to the credit training regulations, students will have to create their own learning path to complete the training program and must actively register for subjects in each of their semesters. To prepare for the student’s course registration, usually at the beginning of each semester, the training department and the head of the department will work together to carry out the following steps: (1) based on […]

Read more

Advanced Visual Studio Code for Python Developers

Visual Studio Code, or VS Code for short, is a free and open source code editor by Microsoft. You can use VS Code as a lightweight code editor to make quick changes, or you can configure it as an integrated development environment (IDE) through the use of third-party extensions. In this tutorial, you’re going to look at how to get the most out of VS Code for Python development. During this tutorial, you’ll learn how you can configure, extend, and […]

Read more

The creation of the game FlickColor in Python with very precise instructions

Instructions du projet Règles du FlickColor Le but du FlickColor est de faire se propager les couleurs sur une grille jusqu’à ce qu’il n’en reste plus qu’une à la fin du jeu. Le joueur doit pouvoir remplir la grille d’une seule couleur en un minimum de coups. Projet Nous devons utiliser TKinter pour l’interface graphique. Notre programme devra comporter: Un écran d’accueil pour démarrer le jeu Un écran de jeu Un écran de sortie à la fin du jeu Notre […]

Read more

Signin/Signup GUI form using tkinter in python

Hello there, I am Shahid and this is the Signin/Signup GUI form using tkinter in python if you want to use avatar images then paste the image to any folder and copy the path paste the image-file path in that line of code where I have clearly specified in the program Here are some preview of the program Register New User Sign In GitHub View Github    

Read more

An Async Python API Wrapper for the Random Stuff API

YARSAW is an Async Python API Wrapper for the Random Stuff API. This module makes it simpler for you to interact with the API and is easy to implement into your application. Make sure to get an API Key from here before trying to access this module. Changes 1.0 (stable) Documentation Make sure to read the docs at https://namantech.me/yarsaw. Contributing To contribute, fork the repo, make your changes, then start a Pull Request in the repo. To-Do Add docstrings to […]

Read more

DIY gravity falls cryptograms made with python

some diy code to implementing ciphers-cryptograms from gravity falls with python, it’s fun tho Algorithm or ciphers list Caesar Atbash A1Z26 ABZA (this is my custom algorithm) Combination (coming soon i guess) How it works first, it take the file (currently supported file is .txt) in the same directory as main.py then read the content, and insert it into choosen algorithm after that it create new “encrypted” file with the key, you can also decrypted that file, using this code […]

Read more

A GitHub Action for checking Django migrations

Django migrations checker A GitHub Action for checking Django migrations About This repository contains a Github Action that checks Django migrations against known issues when running with Postgres in a high-load environment or using rolling deploys. It assumes that migrations are run before new versions of your code starts rolling out. The current checkers are based on our experience at Oda and looks for paterns we know can be problematic. Usage NOTE: This is currently unfinished, it will not post […]

Read more

Client data provider API

Client data provider API. You can check this application working at: https://drf-clients-api.herokuapp.com/ Documentation: https://drf-clients-api.herokuapp.com/doc Features Endpoints GET /clients -> Display all the clients data registered in the database. POST /clients -> Create a new client. GET /clients/cpf_filter/{cpf} -> Display the client with the specified cpf. –example: /clients/cpf_filter/94099913236 GET /clients/gender_filter/{gender} -> Display all the clients with the specified gender. –example: /clients/gender_filter/F GET /clients/state_filter/{state} -> Display all the clients that live in the specified state. –example: /clients/state_filter/Acre GET /clients/{id}/ -> Display the […]

Read more

Wikipedia Extractive Text Summarizer + Keywords Identification (entropy-based)

Uses Beautiful Soup to read Wiki pages, Gensim to summarize, NLTK to process, and extracts keywords based on entropy: everything in one beautiful code. I was looking for similar codes throughout Github but most of them were very difficult to understand and use. I’m building this repo to provide simple, yet effective solution in extractive summarization and keyword identification. Program works best for 300+ words summary. License Please follow license guidelines in usage. GNU General Public License v3.0 Requirements I […]

Read more
1 376 377 378 379 380 928