├── .banners ├── banner_de.png ├── banner_en.png ├── banner_es.png ├── banner_fr.png ├── banner_it.png └── banner_ru.png ├── .gitignore ├── README.md ├── README_de.md ├── README_es.md ├── README_fr.md ├── README_it.md ├── README_ru.md └── dist ├── __init__.py └── start.py /.banners/banner_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markolofsen/stock_exchange_script/0d4baaf846bdceb4362f4bde93ac77009b98af31/.banners/banner_de.png -------------------------------------------------------------------------------- /.banners/banner_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markolofsen/stock_exchange_script/0d4baaf846bdceb4362f4bde93ac77009b98af31/.banners/banner_en.png -------------------------------------------------------------------------------- /.banners/banner_es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markolofsen/stock_exchange_script/0d4baaf846bdceb4362f4bde93ac77009b98af31/.banners/banner_es.png -------------------------------------------------------------------------------- /.banners/banner_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markolofsen/stock_exchange_script/0d4baaf846bdceb4362f4bde93ac77009b98af31/.banners/banner_fr.png -------------------------------------------------------------------------------- /.banners/banner_it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markolofsen/stock_exchange_script/0d4baaf846bdceb4362f4bde93ac77009b98af31/.banners/banner_it.png -------------------------------------------------------------------------------- /.banners/banner_ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markolofsen/stock_exchange_script/0d4baaf846bdceb4362f4bde93ac77009b98af31/.banners/banner_ru.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/macos,node 3 | # Edit at https://www.gitignore.io/?templates=macos,node 4 | 5 | ### macOS ### 6 | # General 7 | .DS_Store 8 | .AppleDouble 9 | .LSOverride 10 | 11 | # Icon must end with two \r 12 | Icon 13 | 14 | # Thumbnails 15 | ._* 16 | 17 | # Files that might appear in the root of a volume 18 | .DocumentRevisions-V100 19 | .fseventsd 20 | .Spotlight-V100 21 | .TemporaryItems 22 | .Trashes 23 | .VolumeIcon.icns 24 | .com.apple.timemachine.donotpresent 25 | 26 | # Directories potentially created on remote AFP share 27 | .AppleDB 28 | .AppleDesktop 29 | Network Trash Folder 30 | Temporary Items 31 | .apdisk 32 | 33 | ### Node ### 34 | # Logs 35 | logs 36 | *.log 37 | npm-debug.log* 38 | yarn-debug.log* 39 | yarn-error.log* 40 | 41 | # Runtime data 42 | pids 43 | *.pid 44 | *.seed 45 | *.pid.lock 46 | 47 | # Directory for instrumented libs generated by jscoverage/JSCover 48 | lib-cov 49 | 50 | # Coverage directory used by tools like istanbul 51 | coverage 52 | 53 | # nyc test coverage 54 | .nyc_output 55 | 56 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 57 | .grunt 58 | 59 | # Bower dependency directory (https://bower.io/) 60 | bower_components 61 | 62 | # node-waf configuration 63 | .lock-wscript 64 | 65 | # Compiled binary addons (https://nodejs.org/api/addons.html) 66 | build/Release 67 | 68 | # Dependency directories 69 | node_modules/ 70 | jspm_packages/ 71 | 72 | # TypeScript v1 declaration files 73 | typings/ 74 | 75 | # Optional npm cache directory 76 | .npm 77 | 78 | # Optional eslint cache 79 | .eslintcache 80 | 81 | # Optional REPL history 82 | .node_repl_history 83 | 84 | # Output of 'npm pack' 85 | *.tgz 86 | 87 | # Yarn Integrity file 88 | .yarn-integrity 89 | 90 | # dotenv environment variables file 91 | .env 92 | 93 | # parcel-bundler cache (https://parceljs.org/) 94 | .cache 95 | 96 | # next.js build output 97 | .next 98 | 99 | # nuxt.js build output 100 | .nuxt 101 | 102 | # vuepress build output 103 | .vuepress/dist 104 | 105 | # Serverless directories 106 | .serverless/ 107 | 108 | # FuseBox cache 109 | .fusebox/ 110 | 111 | #DynamoDB Local files 112 | .dynamodb/ 113 | 114 | # End of https://www.gitignore.io/api/macos,node 115 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
🛠️ This repository was created using the GitUpload.
2 | 3 |Languages:
🇩🇪 Deutsch | 🇬🇧 English | 🇪🇸 Spanish | 🇫🇷 French | 🇮🇹 Italian | 🇷🇺 Russian
🛠️ This repository was created using the GitUpload.
-------------------------------------------------------------------------------- /README_de.md: -------------------------------------------------------------------------------- 1 |🛠️ Dieses Repository wurde mit GitUpload erstellt.
2 | 3 |Languages:
🇩🇪 Deutsch | 🇬🇧 English | 🇪🇸 Spanish | 🇫🇷 French | 🇮🇹 Italian | 🇷🇺 Russian
🛠️ Dieses Repository wurde mit GitUpload erstellt.
-------------------------------------------------------------------------------- /README_es.md: -------------------------------------------------------------------------------- 1 |🛠️ Este repositorio fue creado usando el GitUpload.
2 | 3 |Languages:
🇩🇪 Deutsch | 🇬🇧 English | 🇪🇸 Spanish | 🇫🇷 French | 🇮🇹 Italian | 🇷🇺 Russian
🛠️ Este repositorio fue creado usando el GitUpload.
-------------------------------------------------------------------------------- /README_fr.md: -------------------------------------------------------------------------------- 1 |🛠️ Ce référentiel a été créé en utilisant le GitUpload.
2 | 3 |Languages:
🇩🇪 Deutsch | 🇬🇧 English | 🇪🇸 Spanish | 🇫🇷 French | 🇮🇹 Italian | 🇷🇺 Russian
🛠️ Ce référentiel a été créé en utilisant le GitUpload.
-------------------------------------------------------------------------------- /README_it.md: -------------------------------------------------------------------------------- 1 |🛠️ Questo repository è stato creato usando GitUpload.
2 | 3 |Languages:
🇩🇪 Deutsch | 🇬🇧 English | 🇪🇸 Spanish | 🇫🇷 French | 🇮🇹 Italian | 🇷🇺 Russian
🛠️ Questo repository è stato creato usando GitUpload.
-------------------------------------------------------------------------------- /README_ru.md: -------------------------------------------------------------------------------- 1 |🛠️ Этот репозиторий был создан с использованием GitUpload.
2 | 3 |Languages:
🇩🇪 Deutsch | 🇬🇧 English | 🇪🇸 Spanish | 🇫🇷 French | 🇮🇹 Italian | 🇷🇺 Russian
🛠️ Этот репозиторий был создан с использованием GitUpload.
-------------------------------------------------------------------------------- /dist/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = 'DEMO', 2 | # __version__ = '2.3.0' 3 | 4 | 5 | from .start import DEMO 6 | -------------------------------------------------------------------------------- /dist/start.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | class DEMO(): 4 | 5 | def test(self, var): 6 | print('Your variable is: {}'.format(var)) 7 | 8 | 9 | 10 | if __name__ == '__main__': 11 | pass 12 | 13 | DEMO().test('ok') 14 | --------------------------------------------------------------------------------