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

A python script generates a text file with insert queries for the schema.sql file of the assignment

This is python script generates a text file with insert queries for the schema.sql file of the assignment. DISCLAIMER: I have no idea how the actual datasets should look, this is only my idea of how it could look. I take no responsibly if this dataset is not nearly similar of how the assignment will actually be graded Running this script: Install require packages with: pip install -r requirements.txt Then run: Enjoy the results on insert_queries.txt Collaborate: Hey guys please […]

Read more

Searching keywords in PDF file folders

Steps to use this Python scripts:(1)Paste this script into the file folder containing the PDF files you need to search from;(2)This file is based in anaconda envirionment and requires the Python package: PDfMiner;(3)Run this file and input a keyword;(4)You can orientate the keyword in detailed line and passage now! GitHub View Github    

Read more

Sample code to extract data directly from the NetApp AIQUM MySQL Database

This sample code shows how to connect to the AIQUM Database and pull userquota details from it. AIQUM Requirements: 1. AIQUM 9.7 or higher. 2. An AIQUM “Database User” account with the “Report Schema” role. Python Requirements: 1. The mysql-connector-python module must be installed. AIQUM Database Schema documentation is on the NetApp Support Site: https://mysupport.netapp.com/documentation/docweb/index.html?productID=63834 Using aiqum_user_quota_report.py

Read more

A simple E-commerce shop made with Django and Bulma

A Simple E-Commerce app made with Django Instructions Make sure you have python installed Step 1. Open a terminal Step 2. Paste the given code in the terminal git clone https://github.com/foxy4096/Interiorshop Step 3. Now type this in the terminal Step 4. Now paste this in the terminal python -m venv env # and .envScriptsactivate or for *nix system source .envScriptsactivate #and then type pip install -r requirements.txt Step 5. Now type

Read more
1 392 393 394 395 396 943