WC18-CLI: Improved WorldCup 2018 CLI . Thanks for all the feedback here is how I improved it: https://www.reddit.com/r/Python/comments/8uqe7w/wc18cli_improved_worldcup_2018_cli_thanks_for_all/
reddit
r/Python - WC18-CLI: Improved WorldCup 2018 CLI . Thanks for all the feedback here is how I improved it
1 votes and 0 so far on reddit
pvm: super minimal slightly easier venv switching: https://www.reddit.com/r/Python/comments/8uqg5z/pvm_super_minimal_slightly_easier_venv_switching/
reddit
r/Python - pvm: super minimal slightly easier venv switching
0 votes and 0 so far on reddit
Multiple versions of Python on same computer: https://www.reddit.com/r/Python/comments/8uqor6/multiple_versions_of_python_on_same_computer/
reddit
r/Python - Multiple versions of Python on same computer
1 votes and 1 so far on reddit
How BuzzFeed Migrated from a Perl Monolith to Go and Python Microservices: https://www.infoq.com/articles/buzzfeed-microservices-migration
InfoQ
How BuzzFeed Migrated from a Perl Monolith to Go and Python Microservices
Starting in 2016 BuzzFeed began a re-architecture project moving from a single monolithic application written in Perl to a set of microservices. The main reason for the move was that the Perl application was proving hard to scale, essential given that buzzfeed.com…
Beginners Guide to making a Web Crawler in Python using Scrapy [TUTORIAL]: https://www.reddit.com/r/Python/comments/8ur8y5/beginners_guide_to_making_a_web_crawler_in_python/
reddit
r/Python - Beginners Guide to making a Web Crawler in Python using Scrapy [TUTORIAL]
3 votes and 0 so far on reddit
Visual Studio Code debugger for Python: https://stackoverflow.com/questions/50905094/visual-studio-code-debugger-for-python
Stack Overflow
Visual Studio Code debugger for Python
I have this setting file at Visual Studio Code launch.json:
"name": "Django",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.pythonPath}",
"program": "${
"name": "Django",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.pythonPath}",
"program": "${
Validr-1.0: better schema and new model class for data validation: https://www.reddit.com/r/Python/comments/8us279/validr10_better_schema_and_new_model_class_for/
reddit
r/Python - Validr-1.0: better schema and new model class for data validation
1 votes and 0 so far on reddit
HI I need help i got an error and i don't know why: https://www.reddit.com/r/Python/comments/8us98s/hi_i_need_help_i_got_an_error_and_i_dont_know_why/
reddit
r/Python - HI I need help i got an error and i don't know why
1 votes and 0 so far on reddit
How I extracted Super Mario Bros level data using a 6502 emulator written in Python [xpost /r/programming]: https://www.reddit.com/r/Python/comments/8us6ks/how_i_extracted_super_mario_bros_level_data_using/
reddit
r/Python - How I extracted Super Mario Bros level data using a 6502 emulator written in Python [xpost /r/programming]
1 votes and 0 so far on reddit
Integrating the OHLC value from Python API to MT5 using MQL5: https://stackoverflow.com/questions/51061059/integrating-the-ohlc-value-from-python-api-to-mt5-using-mql5
Stack Overflow
Integrating the OHLC value from Python API to MT5 using MQL5
I have obtained the OHLC values from the iqoption and trying to find out a way to use it with MT5.
Here is how I got the values:
import time
from iqoptionapi.stable_api import IQ_Option
I_want...
Here is how I got the values:
import time
from iqoptionapi.stable_api import IQ_Option
I_want...
[Question] Which library for JSON validation/serialization do you use?: https://www.reddit.com/r/Python/comments/8uu32n/question_which_library_for_json/
reddit
r/Python - [Question] Which library for JSON validation/serialization do you use?
2 votes and 0 so far on reddit
Cool thing to do with PEP 562 in Py3.7: https://www.reddit.com/r/Python/comments/8uv3zv/cool_thing_to_do_with_pep_562_in_py37/
reddit
Cool thing to do with PEP 562 in Py3.7
put the block below in the \_\_init\_\_.py of a package named stocks/ from urllib import request, parse from dataclasses import...