Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.37 KB

README.md

File metadata and controls

47 lines (36 loc) · 1.37 KB

Python sandbox: Implementation tests for some random projects

GitHub language count GitHub top language GitHub repo size GitHub

This python-wrapper groups personal and smaller python projects. Some of them are just for fun scripts. This python-wrapper was made in python 3.6.

Dependencies

For installing the requirements, in your venv or anaconda env, just run the following command:

pip install -r requirements.txt

Project's Structure

.
└── python-sandbox
    ├── drivers
    │   └── chromedriver
    ├── src
    │   ├── crawlers
    │   ├── criptography
    │   ├── cython
    │   ├── misc
    │   └── neural_nets
    ├── .gitignore
    ├── LICENSE
    ├── README.md
    └── requirements.txt

Directory description

  • data: The data dir. Group of non-script support files.
  • docs: The documentation dir.
  • src: The scripts & source code dir.
  • tests: The unittests dir.