Raza Rython 📜 Profile picture
• I'm the R in Python. • Helping Devs level up in Web 3 • Now go and code some Python • @Scroll_ZKP
peterjabraham 🚀 #ScaleFast Profile picture Kamrul Hasan Raza👑🚀 Profile picture Niels Rikze Profile picture bitmogul Profile picture Learning in Public - Coding - DataSci Profile picture 5 subscribed
Mar 21, 2022 11 tweets 3 min read
Start developing on the blockchain with Python

Web3 py enables you to interact with the Ethereum chain using python!

Let me show how to use it 👇 Image First setup your develop environment.
We need a virtual environment and install the web3 py in it.
A virtual environment is a safe isolated environment, where you can develop and install python libraries, without affecting your pc if something goes wrong.
Dec 31, 2021 8 tweets 3 min read
Start building in Web3 today!

Mint your NFT and sell it in YOUR coins(token) on YOUR marketplace!

Check out an easy to follow recipe!

You can pick Python, No-Code or even...ugh...javashit

Check it out 👇

Now go and code some Python These are the 4 steps you need to follow.

To check out the recipe yourself, go here:
thirdweb.com/portal/learn/r…
Nov 21, 2021 17 tweets 6 min read
You can create your own coins on the blockchain with Python

Here is how 🧵 We will use the Python SDK build by thirdweb to create tokens.
We can use these tokens as currency or coins.

Before you start, make usre you have a MetaMask wallet.
If you don't have one, check out this guide:

thirdweb.com/portal/guides/…
Nov 19, 2021 21 tweets 10 min read
MINT AN NFT IN 15 LINES OF PYTHON

As promised, i'm bringing it to to y'all!

Using Python in the Web3 space.

Here's the code.

A thread 🧵 explaining the code and steps we need to take.

LET'S GO

Now go and code some Python Python code on how to mint an NFT Minting an nft with the Python sdk developed by @thirdweb_ requires a couple of steps.
We need to create a project in the dashboard and create an NFT module inside our project. We also need to connect a wallet. So if you don't have one, sign up with MetaMask or CoinWallet.
Nov 15, 2021 22 tweets 4 min read
What can you do in Web3?

How can you use blockchain?
Wait what exactly can you do with a blockchain?

These were also questions that I had!

Let's continue where we left of and dive in slightly deeper before we use Python to do some web3 stuff.

A (MEGA) thread🧵 👇 Here's my first thread, talking about the basics.
Check it out before reading this thread!

Nov 15, 2021 9 tweets 3 min read
DON'T MISS OUT!

Do you guys know @kvncnls aka KavKav?

No!?

A thread👇 Kavkav is in the dev dao @developer_dao (just like me
Nov 13, 2021 26 tweets 4 min read
Remember my tweet "Mint NFT's with Python"

Yes it's time!

As I promised y'all, I'm coming with content to start using Python in the web3 space.

BUT conceptual knowledge is also important.

So here's a (mega?) thread🧵 on what Web3 is. Disclaimer, capturing everything about web3 in a thread is impossible. This is high level stuff and further reading is recommended.

So before we dive into web3 let’s take a look at web1 and web2 is.
In simple terms, web1 is where the World Wide Web started.
Sep 26, 2021 20 tweets 7 min read
I got infected with Web3 😝

Did you know Solidity developers make $145k!?

I kind of don't want to miss out on this XD

So I'm going to learn Solidity :)

Join me!

Here's a thread on how to setup your environment to practise Solidity and write Smart Contracts! Before you start, it's important that you know the fundamentals of blockchain & smart contracts

If not check out this thread by @VittoStack explaining the basics:
Jul 24, 2021 14 tweets 4 min read
Python Functions for beginners Mega Thread 🧵

This thread pretty much covers all elements in functions for Python.
Some advanced elements are left out.

Function is a block of code that can be executed in a standardised way
Python frameworks, like Django or Flask, rely on them. These are the subtopics in Python Functions

Jun 21, 2021 6 tweets 2 min read
Python Functions for beginners 🧵

Functions are a block of code that can be executed in a standardised way
All Python frameworks, like Django or Flask, rely on them.
Knowing the basics is essential

What we covered so far 👇 1. Basic Python Function
May 25, 2021 14 tweets 7 min read
👇🧵
After creating our #Django app

Let's create and fill in the urls.py and views.py files

ps please follow if you like this thread ☺️

thanks!🙏🙏🙏 1/13
By default django doesn’t create a urls.py file in django app folder, so we need to do that manually
May 23, 2021 10 tweets 6 min read
Starting a video thread!! 🧵👇

In this video thread you will find 8 #python videos explaining the basics in python for beginners!

Every video is about 100 seconds :)

quick disclaimer it's obviously not covering everything about python ;) 1/8 Variables
Variables is a method to store information:
#Developer
May 21, 2021 12 tweets 5 min read
Last thread🧵 we created a django project

And went over the basic structure of a website and the files

In this thread we will create a django app

would me the world if you could retweet or like this thread🙏🙏🙏

What we covered so far 👇 1/11
Terminal

Navigate to our folder: Cd project

Create a project folder: Mkdir my project

Create virtual environment: Python -m venv ./myvenv

Install django - pip install Django

Create django project - Django-admin startproject myfirstproject
May 14, 2021 22 tweets 10 min read
Beginning a thread🧵 about the basics in #Python you need to know for #Django👇

Django is a #webframework to build interactive #websites for Python and is great for fast #development 1/ 19 Variables are used to store information, so that they can be used later on in your code.
In Python a ‘string’ is text and a ‘integer’ or ‘float’ is a number
‘car_brand’ and ‘brand_type’ are variables in the example below

Variables can be stored inside other variables