Showing
15 changed files
with
110 additions
and
0 deletions
.gitignore
0 → 100644
.idea/.gitignore
0 → 100644
.idea/check-your-instagram.iml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<module type="JAVA_MODULE" version="4"> | ||
3 | + <component name="FacetManager"> | ||
4 | + <facet type="Python" name="Python"> | ||
5 | + <configuration sdkName="" /> | ||
6 | + </facet> | ||
7 | + </component> | ||
8 | + <component name="NewModuleRootManager" inherit-compiler-output="true"> | ||
9 | + <exclude-output /> | ||
10 | + <content url="file://$MODULE_DIR$" /> | ||
11 | + <orderEntry type="inheritedJdk" /> | ||
12 | + <orderEntry type="sourceFolder" forTests="false" /> | ||
13 | + </component> | ||
14 | +</module> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
.idea/misc.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<project version="4"> | ||
3 | + <component name="ProjectRootManager" version="2" languageLevel="JDK_11" project-jdk-name="11" project-jdk-type="JavaSDK"> | ||
4 | + <output url="file://$PROJECT_DIR$/out" /> | ||
5 | + </component> | ||
6 | +</project> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
.idea/modules.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<project version="4"> | ||
3 | + <component name="ProjectModuleManager"> | ||
4 | + <modules> | ||
5 | + <module fileurl="file://$PROJECT_DIR$/.idea/check-your-instagram.iml" filepath="$PROJECT_DIR$/.idea/check-your-instagram.iml" /> | ||
6 | + </modules> | ||
7 | + </component> | ||
8 | +</project> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
.idea/vcs.xml
0 → 100644
Pipfile
0 → 100644
config/__init__.py
0 → 100644
File mode changed
config/__init__.pyc
0 → 100644
No preview for this file type
config/firebase.py
0 → 100644
1 | +from pyrebase import pyrebase | ||
2 | +import os | ||
3 | +from config.key import * | ||
4 | + | ||
5 | +config = { | ||
6 | + "apiKey": FIREBASE_APIKEY, | ||
7 | + "authDomain": FIREBASE_AUTHDOMAIN, | ||
8 | + "projectId": FIREBASE_PROJECTID, | ||
9 | + "storageBucket": FIREBASE_STORAGEBUCKET, | ||
10 | + "messagingSenderId": FIREBASE_MESSAGINGSENDERID, | ||
11 | + "appId": FIREBASE_APPID, | ||
12 | + "databaseURL": FIREBASE_DATABASEURL, | ||
13 | + "measurementId": FIREBASE_MEASUREMENTID | ||
14 | +} | ||
15 | + | ||
16 | +firebase = pyrebase.initialize_app(config) | ||
17 | + | ||
18 | +db = firebase.database() |
config/firebase.pyc
0 → 100644
No preview for this file type
crawler/README.MD
0 → 100644
1 | +# crawler for instagram |
requirements.txt
0 → 100644
1 | +click==7.1.2 | ||
2 | +Flask==1.1.2 | ||
3 | +gcloud==0.17.0 | ||
4 | +googleapis-common-protos==1.52.0 | ||
5 | +httplib2==0.19.0 | ||
6 | +itsdangerous==1.1.0 | ||
7 | +Jinja2==2.11.3 | ||
8 | +jws==0.1.3 | ||
9 | +MarkupSafe==1.1.1 | ||
10 | +oauth2client==3.0.0 | ||
11 | +protobuf==3.15.2 | ||
12 | +pyasn1==0.4.8 | ||
13 | +pyasn1-modules==0.2.8 | ||
14 | +pycryptodome==3.4.3 | ||
15 | +pyparsing==2.4.7 | ||
16 | +Pyrebase==3.0.27 | ||
17 | +python-jwt==2.0.1 | ||
18 | +requests==2.11.1 | ||
19 | +requests-toolbelt==0.7.0 | ||
20 | +rsa==4.7.2 | ||
21 | +six==1.15.0 | ||
22 | +Werkzeug==1.0.1 |
-
Please register or login to post a comment