|
  Â
This page shows all the
Smart/Centennial memory cards.Â
 |
 |
 |
| Linear
Flash PC Cards |
IDE
Flash Drives |
SRAM
PC Card,
Rechargeable |
Note:
Â
1. All Centennial/Smart
Modular SRAM and linear flash cards are discontinued. We may have
some specific parts still in stock.Â
    You can click here
to find compatible cards using Intel series I, II, II+, Strataflash
and AMD C and D series chipsets, or click here
for compatible SRAM cards.
2. PSI supplies PC card
readers/writers for the SRAM cards and linear flash cards. For more
info about these readers, please click here.
We supply drivers (to our customers only) for Windows 3.1, 95, 98,
Me & 2000. For Windows XP, you may use the Windows native driver
but your cards must have the 2KB attribute. If you prefer to use a
USB external reader with proprietary driver for these cards, please
click here.
Â
Chimera Mobile Phone Utility Licence Online
app = Flask(__name__) app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite:///licences.db" db = SQLAlchemy(app)
class Licence(db.Model): id = db.Column(db.Integer, primary_key=True) applicant_details = db.Column(db.String(100), nullable=False) device_details = db.Column(db.String(100), nullable=False) utility_requirements = db.Column(db.String(100), nullable=False) licence_number = db.Column(db.String(100), nullable=False, unique=True) qr_code = db.Column(db.String(100), nullable=False, unique=True) Chimera Mobile Phone Utility Licence
@app.route("/apply-licence", methods=["POST"]) def apply_licence(): applicant_details = request.json["applicantDetails"] device_details = request.json["deviceDetails"] utility_requirements = request.json["utilityRequirements"] # Generate licence number and QR code licence_number = generate_licence_number() qr_code = generate_qr_code(licence_number) licence = Licence( applicant_details=applicant_details, device_details=device_details, utility_requirements=utility_requirements, licence_number=licence_number, qr_code=qr_code ) db.session.add(licence) db.session.commit() return jsonify({"licenceNumber": licence_number, "qrCode": qr_code}) app = Flask(__name__) app
def generate_licence_number(): # Implement licence number generation logic pass nullable=False) device_details = db.Column(db.String(100)
|