1. Open Source
2. Modules are cheaper
1. Fork of Micro Python
2. Owned by Ada Fruit
3. Compatible with Only Ada Fruit Modules
4. Expensive
5. No ConCurrency and No State Sharing
docker run -d -p 5672:5672 rabbitmq # message
docker run -d -p 27017:27017 mongo #result
docker run -d -p 6379:6379 redis
Note : Use PK ,FK - Star Schema Design ie., StudentID in school
import concurrent.futures | |
import threading | |
a=0 | |
def fn(i): | |
global a | |
a=a+i | |
print(a,threading.get_native_id()) | |
if __name__ == '__main__': |
# %% [markdown] | |
# Test Sample Details | |
# | |
# Format : JSON | |
# Count = 97 | |
# File Size = 2.8 MB | |
# | |
# %% [markdown] | |
# Compression Codec | Time to Compress | Time to Decompress | Benefits | Drawbacks | Compression Size | Common Use Cases |
# %% | |
from pyspark.sql import SparkSession | |
spark=SparkSession.builder.appName("performance").getOrCreate() | |
# %% | |
import string,random | |
# %% | |
rdd_student=spark.sparkContext.parallelize(zip(range(1,27),string.ascii_uppercase)) |
Important
System | Rom Folder | Year of Release |
---|---|---|
Capcom Play System 3 | CPS3 | - |
Capcom Play System 2 | CPS2 | - |
Capcom Play System 1 | CPS1 | - |
Nintendo Game Boy Advance | GBA | 2001 |
from fastapi import FastAPI,Request | |
from pydantic import BaseModel | |
import uvicorn | |
from smslottery import validate_bet | |
from fastapi.middleware.cors import CORSMiddleware | |
origins = ["*"] | |
class Data(BaseModel): | |
game:str | |
text:str |
String
Array / 2D aray
LinkedList (Create ,append , display , ReverseDisplay, remove , Change value, Update By Index
class LinkedList:
def init(self,i):