Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/turulomio/reusingcode
Code that I reuse in several projects
https://github.com/turulomio/reusingcode
Last synced: 6 days ago
JSON representation
Code that I reuse in several projects
- Host: GitHub
- URL: https://github.com/turulomio/reusingcode
- Owner: turulomio
- License: gpl-3.0
- Created: 2019-09-14T07:44:10.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-06T03:15:52.000Z (7 months ago)
- Last Synced: 2024-06-06T04:29:51.961Z (7 months ago)
- Language: Python
- Size: 462 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ReusingCode projects
Code that I reuse in several projects## Reuse files
All files are licensed to GPL-3. So you can reuse them in your projects
To help to include in your prodects you can use github.py module (download_from_github)
For example
```python
self.download_from_github('turulomio','reusingcode','python/connection_pg.py', 'caloriestracker')
```## Good practices to improve this files
### python
- You should be able to run a file with `python file.py` so add imports with `from casts import x`
- You can### PyQt5
- You should be able to run a file with `example.py`## django
- You should add imports with `from .casts.py import x`