RSA Cryptography Authentication Proof-of-Concept

This project was a request by Structured Programming lectures in Computer Science college. It runs with both a Python front-end CLI structure and API Endpoints running with Flask. Features This application does feature a simple authentication concept with encryption over the data transfered between the client and the endpoint. User registration User authentication Requirements Python v3.0 or greater is required. This project was    

Read more

A python tool to create the basics of a project

Instalação Para instalar o Project Maker, você necessita está em um ambiente de desenvolvimento Linux ou wsl com alguma distro debian-based. Primeiramente instalamos o python3 com o python3-pip para podermos compilar este arquivo python sudo apt install python3 python3-pip -y Depois de instalados verifique se possui o git instalado e devidamente configurado, caso já esteja instalado e configurado. Clone este repositório com git clone https://github.com/KitsuneSemCalda/project-maker e instalamos o compilador do python com python3 -m pip install pyinstaller com ele instalado […]

Read more

A Python library for setting up projects using tabular data

A Python library for setting up projects using tabular data. It can create project folders, standardize delimiters, and convert files to CSV from either individual files or a directory. To install, navigate to the directory holding your Python libraries, then copy the “pyprocess” folder into it. The pyrocess folder should contain the pyprocess.py and __init__.py files. Example path: C:Users miniconda3envs Libsite-packagespyprocess Class – Setup Functions setup.Project_Folders: Sets up project folders. Creates the main project folder, as well as Data, Methods, […]

Read more

System Design Assignments as part of Arpit’s System Design Masterclass

The repository contains a set of problem statements around Software Architecture and System Design as conducted by Arpit’s System Design Masterclass. A masterclass that helps you become great at designing scalable, fault-tolerant, and highly available systems. The Program This is a prime and intermediate-level cohort-based course aimed at providing an exclusive and crisp learning experience. The program will cover most of the topics under System Design and Software Architecture including but not limited to – Architecting Social Networks, Building Storage […]

Read more

A Python3 library to generate dynamic SVGs

The Python library for generating dynamic SVGs using Python3 Version: 0.0.5 Installation Note: This library is still under development Example: import svg from svg.canvas import Canvas from svg.shapes import Rectangle from svg.server import svg_server canvas = Canvas(500, 500) rect1 = Rectangle(200, 100, canvas) svg_server(canvas=canvas, port=8000) To Access    

Read more

A Simple Web Server made by Python3

2021-07-11 开发初期,什么都没有。—— $text{GGN_2015}$ 启动服务器 nohup sudo python3 server.py & disown %1 配置与修改 修改 dynamic.py 中的 get_return_message 函数,从而定义自己想要返回的页面/信息。 修改 config.py 中的变量的值从而更改服务器的配置。 以上两个文件在运行时会被 server.py 动态加载,因此,可以在服务器运行时修改这两个文件。 GitHub GitHub – GGN-2015/SimpleWebServer at pythonawesome.com a Simple Web Server made by Python3. Contribute to GGN-2015/SimpleWebServer development by creating an account on GitHub. GitHubGGN-2015    

Read more

Python code for solving 3D structural problems using the finite element method

Python 3D finite element code This python code allows for solving 3D structural problems using the finite element method. New features will be added over time. This code has NOT been validated on reference cases yet. Requirements and dependencies Current features: Meshes Tetrahedral mesh generation from a set of points using scipy.spatial.Delaunay 4-node tetrahedral (Tet4), 6-node prism (Prism6), 8-node brick (Brick8) elements support Support for meshes containing different types of elements, possibly of different orders Materials Linear isotropic elastic materials […]

Read more

Python-beryl: a Python driver for BerylDB

If you want to learn more about BerylDB and how to install it, feel free to check our documentation at docs.beryl.dev.Follow us on Twitter. QuickStart The quick start guide will show you how to set up a simple application using BerylDB’s Python driver. It scope is only how to set up the driver and perform the simple operations. For more advanced coverage, we encourage reading our tutorial. Connecting to BerylDB Let’s create a new example.py file that we will   […]

Read more
1 371 372 373 374 375 928