Git Product home page Git Product logo

code-paster's People

Contributors

fozangardezi avatar

Watchers

 avatar

code-paster's Issues

Can't run app

(fozan-flask-iybhRKFT-py3.8) ➜  Flask git:(master) ✗ python app/__init__.py
Traceback (most recent call last):
  File "app/__init__.py", line 2, in <module>
    import config
ModuleNotFoundError: No module named 'config'
(fozan-flask-iybhRKFT-py3.8) ➜  Flask git:(master) ✗ export FLASK_APP=app 
(fozan-flask-iybhRKFT-py3.8) ➜  Flask git:(master) ✗ flask run
 * Serving Flask app "app"
 * Environment: production
   WARNING: This is a development server. Do not use it in a production deployment.
   Use a production WSGI server instead.
 * Debug mode: off
Usage: flask run [OPTIONS]

Error: While importing "app", an ImportError was raised:

Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/Flask-1.1.1-py3.8.egg/flask/cli.py", line 240, in locate_app
    __import__(module_name)
  File "/home/meow/Desktop/temp/Flask/app/__init__.py", line 3, in <module>
    from flask_sqlalchemy import SQLAlchemy
ModuleNotFoundError: No module named 'flask_sqlalchemy'

Styling issues

Use flake8 https://flake8.pycqa.org/en/latest/index.html#quickstart and fix issues that it reports.

In short, install flake8 and cd into your code directory, then execute flake8 command, it would display errors like the following

➜  Flask git:(fixed-code) flake8
./config.py:6:1: W293 blank line contains whitespace
./config.py:11:5: E265 block comment should start with '# '
./config.py:12:5: E265 block comment should start with '# '
./config.py:14:1: W293 blank line contains whitespace
./config.py:15:1: W293 blank line contains whitespace
./config.py:16:1: W191 indentation contains tabs
./config.py:16:1: E101 indentation contains mixed spaces and tabs
./config.py:16:2: E303 too many blank lines (2)
./config.py:16:2: E116 unexpected indentation (comment)
./config.py:16:2: E265 block comment should start with '# '
./savecode.py:1:24: W291 trailing whitespace
./savecode.py:4:1: E302 expected 2 blank lines, found 1
./savecode.py:6:1: W191 indentation contains tabs
./savecode.py:6:2: E117 over-indented
./savecode.py:6:14: E231 missing whitespace after ':'
./savecode.py:6:25: E231 missing whitespace after ':'
./savecode.py:7:1: E101 indentation contains mixed spaces and tabs
./savecode.py:7:1: W391 blank line at end of file
./savecode.py:7:1: W293 blank line contains whitespace
./app/routes.py:1:20: E231 missing whitespace after ','
./app/routes.py:2:1: F401 'flask.g' imported but unused
./app/routes.py:2:80: E501 line too long (80 > 79 characters)
./app/routes.py:4:28: E231 missing whitespace after ','
./app/routes.py:5:1: F401 'flask_login.login_required' imported but unused
./app/routes.py:5:37: E203 whitespace before ','
./app/routes.py:6:1: F401 'sqlalchemy.text' imported but unused
./app/routes.py:10:1: E303 too many blank lines (3)
./app/routes.py:14:1: W191 indentation contains tabs
./app/routes.py:14:2: E117 over-indented
./app/routes.py:16:1: W191 indentation contains tabs
./app/routes.py:16:3: E117 over-indented
./app/routes.py:17:1: W191 indentation contains tabs
./app/routes.py:18:1: W191 indentation contains tabs
./app/routes.py:18:2: E101 indentation contains mixed spaces and tabs
./app/routes.py:18:10: E122 continuation line missing indentation or outdented
./app/routes.py:19:1: W191 indentation contains tabs
./app/routes.py:19:2: E101 indentation contains mixed spaces and tabs
./app/routes.py:20:1: W191 indentation contains tabs
./app/routes.py:20:2: E101 indentation contains mixed spaces and tabs
./app/routes.py:21:1: W191 indentation contains tabs
./app/routes.py:21:2: E101 indentation contains mixed spaces and tabs
./app/routes.py:22:1: W191 indentation contains tabs
./app/routes.py:22:2: E101 indentation contains mixed spaces and tabs
./app/routes.py:22:10: E122 continuation line missing indentation or outdented
./app/routes.py:23:1: W191 indentation contains tabs
./app/routes.py:23:2: E101 indentation contains mixed spaces and tabs
./app/routes.py:24:1: W191 indentation contains tabs
./app/routes.py:24:2: E101 indentation contains mixed spaces and tabs
./app/routes.py:25:1: W191 indentation contains tabs
./app/routes.py:25:2: E101 indentation contains mixed spaces and tabs
./app/routes.py:26:1: W191 indentation contains tabs
./app/routes.py:26:2: E101 indentation contains mixed spaces and tabs
./app/routes.py:26:6: E122 continuation line missing indentation or outdented
./app/routes.py:27:1: W191 indentation contains tabs
./app/routes.py:27:3: E265 block comment should start with '# '
./app/routes.py:28:1: W191 indentation contains tabs
./app/routes.py:28:38: E231 missing whitespace after ','
./app/routes.py:28:51: E231 missing whitespace after ','
./app/routes.py:28:61: E231 missing whitespace after ','
./app/routes.py:28:79: E251 unexpected spaces around keyword / parameter equals
./app/routes.py:28:80: E501 line too long (98 > 79 characters)
./app/routes.py:28:81: E251 unexpected spaces around keyword / parameter equals
./app/routes.py:29:1: W191 indentation contains tabs
./app/routes.py:30:1: W191 indentation contains tabs
./app/routes.py:30:3: E117 over-indented
./app/routes.py:32:1: E302 expected 2 blank lines, found 1
./app/routes.py:32:23: E231 missing whitespace after ','
./app/routes.py:33:4: E273 tab after keyword
./app/routes.py:34:1: W191 indentation contains tabs
./app/routes.py:34:2: E117 over-indented
./app/routes.py:35:1: W191 indentation contains tabs
./app/routes.py:36:1: W191 indentation contains tabs
./app/routes.py:37:1: W191 indentation contains tabs
./app/routes.py:37:25: E231 missing whitespace after ','
./app/routes.py:38:1: W191 indentation contains tabs
./app/routes.py:39:1: W191 indentation contains tabs
./app/routes.py:40:1: W191 indentation contains tabs
./app/routes.py:41:1: W191 indentation contains tabs
./app/routes.py:42:1: W191 indentation contains tabs
./app/routes.py:42:2: E265 block comment should start with '# '
./app/routes.py:43:1: W191 indentation contains tabs
./app/routes.py:43:1: W293 blank line contains whitespace
./app/routes.py:44:1: E302 expected 2 blank lines, found 1
./app/routes.py:47:1: W191 indentation contains tabs
./app/routes.py:47:2: E117 over-indented
./app/routes.py:48:1: W191 indentation contains tabs
./app/routes.py:48:3: E117 over-indented
./app/routes.py:49:1: W191 indentation contains tabs
./app/routes.py:51:1: E302 expected 2 blank lines, found 1
./app/routes.py:51:23: E231 missing whitespace after ','
./app/routes.py:51:38: E231 missing whitespace after ','
./app/routes.py:53:1: W191 indentation contains tabs
./app/routes.py:53:2: E117 over-indented
./app/routes.py:54:1: W191 indentation contains tabs
./app/routes.py:54:3: E117 over-indented
./app/routes.py:55:1: W191 indentation contains tabs
./app/routes.py:56:1: W191 indentation contains tabs
./app/routes.py:57:1: W191 indentation contains tabs
./app/routes.py:57:22: E251 unexpected spaces around keyword / parameter equals
./app/routes.py:57:24: E251 unexpected spaces around keyword / parameter equals
./app/routes.py:57:33: E231 missing whitespace after ','
./app/routes.py:57:39: E251 unexpected spaces around keyword / parameter equals
./app/routes.py:57:41: E251 unexpected spaces around keyword / parameter equals
./app/routes.py:58:1: W191 indentation contains tabs
./app/routes.py:59:1: W191 indentation contains tabs
./app/routes.py:59:1: W293 blank line contains whitespace
./app/routes.py:60:1: W191 indentation contains tabs
./app/routes.py:61:1: W191 indentation contains tabs
./app/routes.py:62:1: W191 indentation contains tabs
./app/routes.py:63:1: W191 indentation contains tabs
./app/routes.py:64:1: W191 indentation contains tabs
./app/routes.py:64:3: E117 over-indented
./app/routes.py:64:41: E231 missing whitespace after ','
./app/routes.py:64:48: E251 unexpected spaces around keyword / parameter equals
./app/routes.py:66:1: E302 expected 2 blank lines, found 1
./app/routes.py:66:20: E231 missing whitespace after ','
./app/routes.py:66:35: E231 missing whitespace after ','
./app/routes.py:69:1: W191 indentation contains tabs
./app/routes.py:69:2: E117 over-indented
./app/routes.py:70:1: W191 indentation contains tabs
./app/routes.py:70:3: E117 over-indented
./app/routes.py:72:1: W191 indentation contains tabs
./app/routes.py:73:1: W191 indentation contains tabs
./app/routes.py:73:3: E117 over-indented
./app/routes.py:74:1: W191 indentation contains tabs
./app/routes.py:74:13: E222 multiple spaces after operator
./app/routes.py:75:1: W191 indentation contains tabs
./app/routes.py:75:14: E231 missing whitespace after ','
./app/routes.py:76:1: W191 indentation contains tabs
./app/routes.py:76:1: W293 blank line contains whitespace
./app/routes.py:77:1: W191 indentation contains tabs
./app/routes.py:77:3: E265 block comment should start with '# '
./app/routes.py:78:1: W191 indentation contains tabs
./app/routes.py:78:3: E265 block comment should start with '# '
./app/routes.py:79:1: W191 indentation contains tabs
./app/routes.py:79:3: E265 block comment should start with '# '
./app/routes.py:80:1: W191 indentation contains tabs
./app/routes.py:80:11: E225 missing whitespace around operator
./app/routes.py:81:1: W191 indentation contains tabs
./app/routes.py:81:3: F841 local variable 'pas' is assigned to but never used
./app/routes.py:82:1: W191 indentation contains tabs
./app/routes.py:82:3: E265 block comment should start with '# '
./app/routes.py:83:1: W191 indentation contains tabs
./app/routes.py:83:3: E265 block comment should start with '# '
./app/routes.py:86:1: W191 indentation contains tabs
./app/routes.py:87:1: W191 indentation contains tabs
./app/routes.py:88:1: W191 indentation contains tabs
./app/routes.py:89:1: W191 indentation contains tabs
./app/routes.py:89:3: E101 indentation contains mixed spaces and tabs
./app/routes.py:90:1: W191 indentation contains tabs
./app/routes.py:90:3: E101 indentation contains mixed spaces and tabs
./app/routes.py:91:1: W191 indentation contains tabs
./app/routes.py:91:1: W293 blank line contains whitespace
./app/routes.py:93:1: W191 indentation contains tabs
./app/routes.py:94:1: W191 indentation contains tabs
./app/routes.py:95:1: W191 indentation contains tabs
./app/routes.py:96:1: W191 indentation contains tabs
./app/routes.py:96:3: E101 indentation contains mixed spaces and tabs
./app/routes.py:97:1: W191 indentation contains tabs
./app/routes.py:97:3: E101 indentation contains mixed spaces and tabs
./app/routes.py:98:1: W191 indentation contains tabs
./app/routes.py:99:1: W191 indentation contains tabs
./app/routes.py:100:1: W191 indentation contains tabs
./app/routes.py:101:1: W191 indentation contains tabs
./app/routes.py:102:1: W191 indentation contains tabs
./app/routes.py:103:1: W191 indentation contains tabs
./app/routes.py:104:1: W191 indentation contains tabs
./app/routes.py:106:1: W191 indentation contains tabs
./app/routes.py:107:1: W191 indentation contains tabs
./app/routes.py:108:1: W191 indentation contains tabs
./app/routes.py:109:1: W191 indentation contains tabs
./app/routes.py:110:1: W191 indentation contains tabs
./app/routes.py:110:4: E117 over-indented
./app/routes.py:111:1: W191 indentation contains tabs
./app/routes.py:112:1: W191 indentation contains tabs
./app/routes.py:113:1: W191 indentation contains tabs
./app/routes.py:114:1: W191 indentation contains tabs
./app/routes.py:115:1: W191 indentation contains tabs
./app/routes.py:116:1: W191 indentation contains tabs
./app/routes.py:116:22: F821 undefined name 'url_parse'
./app/routes.py:117:1: W191 indentation contains tabs
./app/routes.py:117:4: E117 over-indented
./app/routes.py:118:1: W191 indentation contains tabs
./app/routes.py:119:1: W191 indentation contains tabs
./app/routes.py:120:1: W191 indentation contains tabs
./app/routes.py:120:3: E117 over-indented
./app/routes.py:120:38: E231 missing whitespace after ','
./app/routes.py:122:1: E302 expected 2 blank lines, found 1
./app/routes.py:124:1: W191 indentation contains tabs
./app/routes.py:124:2: E117 over-indented (comment)
./app/routes.py:124:2: E265 block comment should start with '# '
./app/routes.py:125:1: W191 indentation contains tabs
./app/routes.py:125:2: E117 over-indented
./app/routes.py:125:21: E231 missing whitespace after ','
./app/routes.py:126:1: W191 indentation contains tabs
./app/routes.py:128:1: E302 expected 2 blank lines, found 1
./app/routes.py:128:44: E231 missing whitespace after ','
./app/routes.py:130:1: W191 indentation contains tabs
./app/routes.py:130:2: E117 over-indented
./app/routes.py:131:1: W191 indentation contains tabs
./app/routes.py:131:1: W293 blank line contains whitespace
./app/routes.py:132:1: W191 indentation contains tabs
./app/routes.py:133:1: W191 indentation contains tabs
./app/routes.py:133:3: E117 over-indented
./app/routes.py:134:1: W191 indentation contains tabs
./app/routes.py:135:1: W191 indentation contains tabs
./app/routes.py:135:3: E117 over-indented
./app/routes.py:136:1: W191 indentation contains tabs
./app/routes.py:137:1: W191 indentation contains tabs
./app/routes.py:138:1: W191 indentation contains tabs
./app/routes.py:138:4: E117 over-indented
./app/routes.py:139:1: W191 indentation contains tabs
./app/routes.py:140:1: W191 indentation contains tabs
./app/routes.py:141:1: W191 indentation contains tabs
./app/routes.py:142:1: W191 indentation contains tabs
./app/routes.py:142:22: F821 undefined name 'url_parse'
./app/routes.py:143:1: W191 indentation contains tabs
./app/routes.py:143:4: E117 over-indented
./app/routes.py:144:1: W191 indentation contains tabs
./app/routes.py:145:1: W191 indentation contains tabs
./app/routes.py:146:1: W191 indentation contains tabs
./app/routes.py:146:45: E231 missing whitespace after ','
./app/routes.py:146:61: E231 missing whitespace after ','
./app/routes.py:146:67: E251 unexpected spaces around keyword / parameter equals
./app/routes.py:148:1: E302 expected 2 blank lines, found 1
./app/routes.py:148:31: E231 missing whitespace after ','
./app/routes.py:148:46: E231 missing whitespace after ','
./app/routes.py:150:1: W191 indentation contains tabs
./app/routes.py:150:2: E117 over-indented
./app/routes.py:151:1: W191 indentation contains tabs
./app/routes.py:152:1: W191 indentation contains tabs
./app/routes.py:152:3: E117 over-indented
./app/routes.py:154:1: W191 indentation contains tabs
./app/routes.py:155:1: W191 indentation contains tabs
./app/routes.py:155:3: E117 over-indented
./app/routes.py:155:42: E231 missing whitespace after ','
./app/routes.py:156:1: W191 indentation contains tabs
./app/routes.py:157:1: W191 indentation contains tabs
./app/routes.py:158:1: W191 indentation contains tabs
./app/routes.py:159:1: W191 indentation contains tabs
./app/routes.py:160:1: W191 indentation contains tabs
./app/routes.py:162:1: W191 indentation contains tabs
./app/routes.py:162:48: E231 missing whitespace after ','
./app/routes.py:162:55: E251 unexpected spaces around keyword / parameter equals
./app/routes.py:162:66: E231 missing whitespace after ','
./app/routes.py:163:1: W391 blank line at end of file
./app/__init__.py:8:1: E265 block comment should start with '# '
./app/__init__.py:14:22: E231 missing whitespace after ','
./app/__init__.py:18:1: E303 too many blank lines (3)
./app/__init__.py:18:1: E402 module level import not at top of file
./app/__init__.py:18:1: F401 'app.routes' imported but unused
./app/__init__.py:18:1: F401 'app.models' imported but unused
./app/__init__.py:18:31: W292 no newline at end of file
./app/forms.py:2:1: F401 'wtforms.BooleanField' imported but unused
./app/forms.py:6:1: E302 expected 2 blank lines, found 1
./app/forms.py:7:1: W191 indentation contains tabs
./app/forms.py:7:2: E117 over-indented
./app/forms.py:8:1: W191 indentation contains tabs
./app/forms.py:8:2: E265 block comment should start with '# '
./app/forms.py:9:1: W191 indentation contains tabs
./app/forms.py:10:1: W191 indentation contains tabs
./app/forms.py:14:1: W191 indentation contains tabs
./app/forms.py:14:1: W293 blank line contains whitespace
./app/forms.py:15:1: W191 indentation contains tabs
./app/forms.py:15:2: E117 over-indented
./app/forms.py:15:12: E222 multiple spaces after operator
./app/forms.py:16:1: W191 indentation contains tabs
./app/forms.py:17:1: W191 indentation contains tabs
./app/forms.py:18:1: W191 indentation contains tabs
./app/forms.py:18:45: E231 missing whitespace after ','
./app/forms.py:18:72: E231 missing whitespace after ','
./app/forms.py:18:80: E501 line too long (93 > 79 characters)
./app/forms.py:19:1: W191 indentation contains tabs
./app/forms.py:22:1: W191 indentation contains tabs
./app/forms.py:22:2: E303 too many blank lines (2)
./app/forms.py:22:30: E231 missing whitespace after ','
./app/forms.py:23:1: W191 indentation contains tabs
./app/forms.py:23:3: E117 over-indented
./app/forms.py:23:42: E251 unexpected spaces around keyword / parameter equals
./app/forms.py:23:43: F821 undefined name 'firstname'
./app/forms.py:24:1: W191 indentation contains tabs
./app/forms.py:25:1: W191 indentation contains tabs
./app/forms.py:25:4: E117 over-indented
./app/forms.py:25:62: W291 trailing whitespace
./app/forms.py:26:1: E101 indentation contains mixed spaces and tabs
./app/forms.py:26:1: W293 blank line contains whitespace
./app/forms.py:27:1: W191 indentation contains tabs
./app/forms.py:27:1: E101 indentation contains mixed spaces and tabs
./app/forms.py:27:31: E231 missing whitespace after ','
./app/forms.py:28:1: W191 indentation contains tabs
./app/forms.py:28:3: E117 over-indented
./app/forms.py:28:43: E251 unexpected spaces around keyword / parameter equals
./app/forms.py:28:44: F821 undefined name 'secondname'
./app/forms.py:29:1: W191 indentation contains tabs
./app/forms.py:30:1: W191 indentation contains tabs
./app/forms.py:30:4: E117 over-indented
./app/forms.py:30:63: W291 trailing whitespace
./app/forms.py:33:1: W191 indentation contains tabs
./app/forms.py:33:2: E303 too many blank lines (2)
./app/forms.py:33:25: E231 missing whitespace after ','
./app/forms.py:34:1: W191 indentation contains tabs
./app/forms.py:34:3: E117 over-indented
./app/forms.py:34:37: E251 unexpected spaces around keyword / parameter equals
./app/forms.py:35:1: W191 indentation contains tabs
./app/forms.py:36:4: E117 over-indented
./app/forms.py:36:61: W292 no newline at end of file
./app/models.py:2:34: W291 trailing whitespace
./app/models.py:6:1: E302 expected 2 blank lines, found 1
./app/models.py:7:1: W191 indentation contains tabs
./app/models.py:7:2: E117 over-indented
./app/models.py:7:40: E251 unexpected spaces around keyword / parameter equals
./app/models.py:7:42: E251 unexpected spaces around keyword / parameter equals
./app/models.py:8:1: W191 indentation contains tabs
./app/models.py:9:1: W191 indentation contains tabs
./app/models.py:9:32: E231 missing whitespace after ','
./app/models.py:12:1: W191 indentation contains tabs
./app/models.py:12:2: E303 too many blank lines (2)
./app/models.py:12:19: E231 missing whitespace after ','
./app/models.py:12:24: E231 missing whitespace after ','
./app/models.py:13:1: W191 indentation contains tabs
./app/models.py:13:3: E117 over-indented
./app/models.py:14:1: W191 indentation contains tabs
./app/models.py:17:21: E231 missing whitespace after ','
./app/models.py:18:1: W191 indentation contains tabs
./app/models.py:18:2: E117 over-indented
./app/models.py:19:1: W191 indentation contains tabs
./app/models.py:19:27: E231 missing whitespace after ','
./app/models.py:20:1: W191 indentation contains tabs
./app/models.py:20:36: E231 missing whitespace after ','
./app/models.py:20:47: E231 missing whitespace after ','
./app/models.py:21:1: W191 indentation contains tabs
./app/models.py:21:33: E231 missing whitespace after ','
./app/models.py:21:44: E231 missing whitespace after ','
./app/models.py:22:1: W191 indentation contains tabs
./app/models.py:23:1: W191 indentation contains tabs
./app/models.py:23:32: E231 missing whitespace after ','
./app/models.py:23:48: E231 missing whitespace after ','
./app/models.py:23:64: W291 trailing whitespace
./app/models.py:25:1: W191 indentation contains tabs
./app/models.py:25:23: E231 missing whitespace after ','
./app/models.py:26:1: W191 indentation contains tabs
./app/models.py:26:3: E117 over-indented
./app/models.py:28:1: W191 indentation contains tabs
./app/models.py:28:25: E231 missing whitespace after ','
./app/models.py:29:1: W191 indentation contains tabs
./app/models.py:29:3: E117 over-indented
./app/models.py:29:48: E231 missing whitespace after ','
./app/models.py:32:1: W191 indentation contains tabs
./app/models.py:32:1: W293 blank line contains whitespace
./app/models.py:34:1: E303 too many blank lines (4)
./app/models.py:36:35: W292 no newline at end of file
./migrations/env.py:24:1: E402 module level import not at top of file
./migrations/versions/04884a2a19b2_tables_initial_migration.py:4:9: W291 trailing whitespace
./migrations/versions/04884a2a19b2_tables_initial_migration.py:22:5: E128 continuation line under-indented for visual indent
./migrations/versions/04884a2a19b2_tables_initial_migration.py:23:5: E122 continuation line missing indentation or outdented
./migrations/versions/04884a2a19b2_tables_initial_migration.py:24:5: E122 continuation line missing indentation or outdented
./migrations/versions/04884a2a19b2_tables_initial_migration.py:25:5: E122 continuation line missing indentation or outdented
./migrations/versions/04884a2a19b2_tables_initial_migration.py:26:5: E122 continuation line missing indentation or outdented
./migrations/versions/04884a2a19b2_tables_initial_migration.py:28:80: E501 line too long (80 > 79 characters)
./migrations/versions/04884a2a19b2_tables_initial_migration.py:31:5: E128 continuation line under-indented for visual indent
./migrations/versions/04884a2a19b2_tables_initial_migration.py:32:5: E122 continuation line missing indentation or outdented
./migrations/versions/04884a2a19b2_tables_initial_migration.py:33:5: E122 continuation line missing indentation or outdented
./migrations/versions/04884a2a19b2_tables_initial_migration.py:34:5: E122 continuation line missing indentation or outdented
./migrations/versions/04884a2a19b2_tables_initial_migration.py:35:5: E122 continuation line missing indentation or outdented

Stay consistent.

  • Either, use spaces or tabs. I prefer tabs.
  • Remove unused code (that includes commented code too).
  • Remove print() that is used for debugging. Even, if you want to let them stay for debugging purposes in future, use logging module found in Python's standard library.

No readme

Please add readme that tells how to setup and run your app.

Readme.md contain no details

  • Please don't close issues when you don't fix them.
  • If you don't understand the purpose of issue or intent of issue opener, ask him/her nicely.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.