mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 14:10:21 -04:00
💾
This commit is contained in:
parent
fc8d690a51
commit
d24d37806d
14 changed files with 11 additions and 20 deletions
|
@ -1 +1 @@
|
||||||
Click==7.0
|
Click
|
|
@ -5,12 +5,12 @@ setup(
|
||||||
version='0.0.1',
|
version='0.0.1',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
author='Mia von Steinkirch',
|
author='steinkirch',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Click',
|
'Click',
|
||||||
],
|
],
|
||||||
entry_points='''
|
entry_points='''
|
||||||
[console_scripts]
|
[console_scripts]
|
||||||
yourapp=yourapp.yourapp:main
|
src=src.main:main
|
||||||
''',
|
''',
|
||||||
)
|
)
|
|
@ -1 +0,0 @@
|
||||||
# -*- coding: utf8 -*-
|
|
|
@ -1 +0,0 @@
|
||||||
#!/usr/bin/env python3
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
* [Read a detailed explanation on threads and multiprocessing in Python in my book](https://github.com/bt3gl-labs/Book-on-Python-and-Algorithms/blob/master/book/ebook_pdf/book_second_edition.pdf)
|
* [Read a detailed explanation on threads and multiprocessing in Python in my book](https://github.com/go-outside-labs/algorithms-book)
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
# Security Examples
|
|
||||||
|
|
||||||
This directory contains the source code published in my Medium articles:
|
|
||||||
|
|
||||||
|
|
||||||
* [Learn Networking with Python’s Socket and Threading Module 🚀](https://medium.com/python-for-the-utopian/learning-networking-with-pythons-socket-and-threading-module-30dc77e1fc59).
|
|
||||||
* [Understand the SSH Protocol with Python 🐍](https://medium.com/python-for-the-utopian/writing-ssh-client-and-server-in-python-b5b330c983d3).
|
|
||||||
* [Building a Snifffffing Scanner in Python 💣](https://medium.com/python-for-the-utopian/building-a-udp-scanner-in-python-84e62947aab7).
|
|
|
@ -5,7 +5,7 @@ setup(
|
||||||
version='0.0.1',
|
version='0.0.1',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
author='Mia von Steinkirch',
|
author='steinkirch',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
],
|
],
|
||||||
entry_points='''
|
entry_points='''
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
# Location API 🗺
|
# Location API 🗺
|
||||||
|
|
||||||
|
|
||||||
Location API built with FastAPI. [Deployed in Vercel](https://choices-location-api.vercel.app/).
|
Location API built with FastAPI.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
## Endpoint /location
|
## Endpoint /location
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ setup(
|
||||||
version='0.0.1',
|
version='0.0.1',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
author='Mia von Steinkirch',
|
author='steinkirch',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
],
|
],
|
||||||
entry_points='''
|
entry_points='''
|
||||||
|
|
|
@ -5,7 +5,7 @@ setup(
|
||||||
version='0.0.1',
|
version='0.0.1',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
author='Mia von Steinkirch',
|
author='steinkirch',
|
||||||
entry_points='''
|
entry_points='''
|
||||||
[console_scripts]
|
[console_scripts]
|
||||||
epen=src.main:main
|
epen=src.main:main
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
## Parsing medium posts
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
```
|
```
|
||||||
chmod a+x <filename.py>
|
chmod a+x <filename.py>
|
||||||
./<filenamse.py>
|
./<filename.py>
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
or
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue