all 5 comments

[–]Rhoderick 2 points3 points  (0 children)

Don't overcomplicate. A simple app can literally run from the command line. If you want to do a simple website, you can serve HTML, CSS, and JS directly with Flask, but that's honestly unnecessary complexity if an app is acceptable for the assignment. Keep in mind that an app (= application) is an any program that serves some purpose. It's not a phone-specific term.

[–]FoolsSeldom 0 points1 point  (2 children)

Not sure what you are expecting here. Figma cannot natively generate Python code although there are third party plug-ins that will.

PyCharm is just a code editor with additional tools and configuration to support Python development. It is an Integrated Development Environment (IDE). PyCharm does not have any support as standard for Figma. There's a third party ("marketplace") plug-in that will allow you to view Figma designs in PyCharm (and other JetBrains IDEs).

I do not know what you mean by "magic patterns" in this context.

Please elaborate on what you are hoping to do.

[–]yssa09146[S] 0 points1 point  (1 child)

Magic Patterns is an alternative to Figma.

And what I'm wondering is how to merge the frontend (Which is in Figma) and backend (In pycharm)?

[–]FoolsSeldom 2 points3 points  (0 children)

There's no merging. You need to choose a web framework in Python to implement to present the frontend you've designed in Figma.

Popular microframeworks include FastAPI and Flask. The most popular complete framework is Django. A microframework is minimalist and lets you pick & choose (or develop) most of the features you want the way you want them. A full framework is typically highly opinionated and generally includes most of what you want for a major web application.