Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yyarenddurmaz/unisayfa
2022-2023 akademik yılında ders ödevi için yaptığım Django projesi. / Django project I did for a course assignment in the 2022-2023 academic year.
https://github.com/yyarenddurmaz/unisayfa
bootsrap5 css django html pyhton
Last synced: about 1 month ago
JSON representation
2022-2023 akademik yılında ders ödevi için yaptığım Django projesi. / Django project I did for a course assignment in the 2022-2023 academic year.
- Host: GitHub
- URL: https://github.com/yyarenddurmaz/unisayfa
- Owner: yyarenddurmaz
- Created: 2024-09-17T16:18:09.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T16:44:11.000Z (about 2 months ago)
- Last Synced: 2024-09-26T01:27:38.256Z (about 2 months ago)
- Topics: bootsrap5, css, django, html, pyhton
- Language: Python
- Homepage: https://replit.com/@yyarenddurmaz/unisayfa
- Size: 7.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python on Replit
This is a template to get you started with Python on Replit. It's ready to go so you can just hit run and start coding!
## Running the repl
1. Setup a new secret environment variable (the lock icon) where the key is `SECRET_KEY` and the value is
a randomly generated token of 32 bits of randomnese. To generate such a token type this into the shell and hit Enter:
```
python
import secrets
secrets.token_urlsafe(32)
```
2. Hit run!See this 1 minute video for a walkthrough: [https://www.loom.com/share/ecc4e738149f4d1db3bcff01758b3e71](https://www.loom.com/share/341b5574d12040fb9fcbbff150777f1c)
## Installing packages
To add packages to your repl, you can just import directly in the file you want to use the package in, and it will automatically be installed when you press the run button. Like below:
```python
import math
import pandas as pd
```You could also install packages by using the Replit packager interface in the left sidebar.
## Help
If you need help you might be able to find an answer on our [docs](https://docs.replit.com) page. Feel free to report bugs and give us feedback [here](https://replit.com/support).