Accessing NFC via Flet app (progressive web app) - python

I am new to the app development in flutter, but really like python. Therefore I would really like to implement my app with flet.
My question is, do you know if with integrating other python libraries I could access the NFC capabilities of the phone I installed the PWA and write NFC messages?
I would really appreciate your help!
Thank you!
In the documentary and other Blog entries I haven't found anything regarding this topic so far.

Related

Can we create a mobile application using Kivy that is connected to an online/cloud hosting provider?

I am planning to create a mobile application using Python language, specifically, I was planning to use the Kivy framework to finish the app. It is a simple learning mobile application that allows users to upload pdf files to an online server using their own accounts. The app I am tasked to create should and can only online - I am not sure if I can accomplish this using Kivy. Is there a way to connect to an online/cloud hosting provider using Kivy?
And if it is possible, can you recommend a hosting provider that is free for personal use; for students and beginner programmers?
For now, I am still at the planning stage of my project; however, the idea is already approved, so I am really hoping for an answer. Any help would be appreciated.

Is there any Cloud backend service for Python kivy framework

I am doing research in Python Kivy framework and i found it great for developing apps for cross-platform. But in my app i want to integrate Cloud Backend Service such as Parse. So if anybody come across then please share with us.
Thanks,
Abdul
I got my answer on behalf of my research that is
1.Parse provide a REST API.
2. someone has written a Python client.
These are two alternative options which could help for creating a cloud backend with Python based Apps.

make web2py application available on the web

I have create a simple and small web2py application that i want to make public to the world.
I am new to web development and need some help and guidance.
Thanks in Advance.
Cheers
Probably the easiest way to get started is to register on https://www.pythonanywhere.com/ (which is free for basic usage). They offer a pre-configured setup for web2py so you won't have any trouble setting up the server.
Once you have web2py running you can use the usual web2py admin interface to upload your packaged web2py app. If you have never heard about this before, take a look at this: http://web2py.com/books/default/chapter/29/03#More-on-admin

how to let my web-ui communitate(or control) my CLI program

I'm already implement a command line tool used for 802.1x authentication in python. But I want a gui frontend. I want to try a web UI this time, but I don't know how to let my webui communicate with my python app.
I only know that I need to open a socket in CLI program and receive the message send by the web ui. But I'm a newbie in web development. I don't known what to do with my web app.
Do you have any good advice? Thanks in advance.
Python official wiki page about web programming and the wikipedia list of the web frameworks written in Python are good places to start from.

creating gtalk type app using django

I am learning Python and Django. I want to create a Gtalk type of application using Django and Python. Please tell me where I can find documentation that will help me build my application. Mainly I want to know how to determine when anyone logs in if their friends is online, busy, offline, etc. I also would like to know how to respond to those events. Thanks in advance.
you can start with learning the XMPP protocol, or learning to use any of the python libraries that deal with XMPP.
I referred you to XMPP because this is the protocol used by GTalk. there are other instant messaging protocols that can be used.
If you're thinking of writing a Gtalk-type application in Django, you could look to host it on Google AppEngine, which has great support for XMPP.
Also, check out Tornado, which is better for real-time Python apps than Django is.

Categories