Chalice – A tool to facilitate Python based lambda deployment

Chalice is a tool to facilitate Python based lambda deployment. This repo contains the output of my basic exploration of this tool. My specific goal with this tiny project was to examine the output of the terraform code and understand what resources will be created for a helloworld project. I followed this tutorial, although used virtualenv a bit differently. python3 –version python3 -m venv venv38 . venv38/bin/activate As instructed in the tutorial, instead of running chalice deploy, I used chalice […]

Read more

MODI+ Firmware Updater With Python

실행 준비 python3(파이썬3.9 혹은 그 이상의 버전)를 컴퓨터에 설치 python3 -m pip install -r requirements.txt로 의존성 패키지들을 설치 실행 방법 (개발) python3 main.py –debug True로 GUI 프로그램을 실행한다. 실행 방법 (일반) python3 main.py로 GUI 프로그램을 실행한다. 실행파일 생성 python3 bootstrap.py 커맨드를 실행하여 정의한 spec 파일을 기반으로 실행파일을 생성 dist 폴더 내 MODI+ Firmware Updater.exe, MODI+ Firmware Multi Updater.exe 실행파일이 생성된것을 확인 GitHub View Github    

Read more

Twitter Redesign With Django

A project that tests Django and React knowledge through a twitter-like web application that allows users to sign in, create and like tweets and view the profiles of other users Build With Python -v 3.8.10 Django -v 4.0.2 DjangoRestFramework React Bootstrap PostgresQL Live Demo GitHub View Github    

Read more

List Less Than Ten with python

Take a list, say for example this one: a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] and write a program that prints out all the elements of the list that are less than 5. Extras: Instead of printing the elements one by one, make a new list that has all the elements less than 5 from this list in it and print out this new list. Write this in one line of Python. Ask the […]

Read more

Dice Rolling Simulator using Python-random

As the name of the program suggests, we will be imitating a rolling dice. This is one of the interesting python projects and will generate a random number each dice the program runs, and the users can use the dice repeatedly for as long as he wants. When the user rolls the dice, the program will generate a random number between 1 and 6 (as on a standard dice). The number will then be displayed to the user. It will […]

Read more

Number Guessing Game Built With Python

This project is an exciting fun game for beginners to build up. The program generates a random number from 1 to 10, or 1 to 100 any range that is specified and the user must guess the number after a hint from the computer. Every time a user’s guess is wrong they are prompted with more hints to make it easier for them to guess the number but at the cost of reducing the score. The clue any math clue […]

Read more

Car list cli app with python

To run this script git clone https://github.com/ArieTwigt/rdwcli.git Create virtual environment: virtualenv venv –python=python3 Activate virtualenv: venvScriptsactivate (Windows) source venv/bin/activate (OSC) Install required pacakges pip install -r requirements.txt Run the script python main.py GitHub View Github    

Read more

How to build an Fahrenheit to Celsius Converter in Python

Generally to measure the temperature we make use of one of these two popular units i.e. Fahrenheit & Celsius. Converting one into another is usually boring and can be easily automated. Today we will be building a simple & short project which will convert Fahrenheit to Celsius for us in seconds. Contributing This is a personal learning project for me. Please feel free to fork this repo. Pull request to submit more programs. Feedback If you find any bug or […]

Read more

This program sends a message to various email adresses

This program sends a message to various email adresses.Fist, download offices.txt and message.txtThen, enter the directory of the files where it is needed.In the offices.txt file, enter the name of the receiver with a capital first letter. Leave a space and then enter their e-mail adress.In order to enter a second receiver, change the line.In the message.txt file you construct your own message around the text “$OFFICE_NAME”, which you will leave untouched.When you run the .py file, you will be […]

Read more

Finding leaked secrets in your Docker image with a scanner

If you’re not careful, you can end up with a private SSH key, AWS access token, or password embedded in your Docker image. That means anyone who access the image will be able to get that secret, and potentially use it to gain further access to additional systems. While you can and should take steps to prevent leaking secrets in the first place, it’s still useful to catch leaks if they do happen. If you can catch the leak before […]

Read more
1 240 241 242 243 244 927