Initial commit
This commit is contained in:
commit
88eb6129e0
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
*.swp
|
||||
venv/*
|
||||
*.pyc
|
||||
__pycache__/*
|
||||
__pycache__
|
||||
*.wpr
|
||||
*.log
|
||||
.idea/
|
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@ -0,0 +1,6 @@
|
||||
FROM python:3
|
||||
|
||||
COPY . /dkebab/
|
||||
RUN pip3 install -r /dkebab/requirements.txt
|
||||
|
||||
CMD python3 /dkebab/kebab_worker/main.py
|
2993
GBA1000.txt
Normal file
2993
GBA1000.txt
Normal file
File diff suppressed because it is too large
Load Diff
10
kebab_worker/main.py
Normal file
10
kebab_worker/main.py
Normal file
@ -0,0 +1,10 @@
|
||||
import os
|
||||
|
||||
|
||||
def main():
|
||||
for i in range(os.cpu_count()):
|
||||
print(i)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
3
requirements.txt
Normal file
3
requirements.txt
Normal file
@ -0,0 +1,3 @@
|
||||
networkx
|
||||
numpy
|
||||
requests
|
Loading…
Reference in New Issue
Block a user