Skip to content

Commit 3f50def

Browse files
committed
Add django3.0 admin system for rpa settings and create useful contents for RPA system
1 parent c7262c8 commit 3f50def

File tree

57 files changed

+1124
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1124
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# python-RPA
22

33
* A simple web rpa application from quart frame with A django backend admin system made by Tyler
4+
5+
- pagesRpa is a django3.0 backend system

pagesRPA/db.sqlite3

Whitespace-only changes.

pagesRPA/manage.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env python
2+
"""Django's command-line utility for administrative tasks."""
3+
import os
4+
import sys
5+
6+
7+
def main():
8+
"""Run administrative tasks."""
9+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pagesRPA.settings')
10+
try:
11+
from django.core.management import execute_from_command_line
12+
except ImportError as exc:
13+
raise ImportError(
14+
"Couldn't import Django. Are you sure it's installed and "
15+
"available on your PYTHONPATH environment variable? Did you "
16+
"forget to activate a virtual environment?"
17+
) from exc
18+
execute_from_command_line(sys.argv)
19+
20+
21+
if __name__ == '__main__':
22+
main()

pagesRPA/pagesRPA/__init__.py

Whitespace-only changes.
131 Bytes
Binary file not shown.
9.24 KB
Binary file not shown.
1.46 KB
Binary file not shown.
2.58 KB
Binary file not shown.
2.46 KB
Binary file not shown.
1.01 KB
Binary file not shown.

0 commit comments

Comments
 (0)