Skip to content

Commit 97f0ce6

Browse files
author
erichideki
committed
MERGE
2 parents 047247d + 9d6f814 commit 97f0ce6

6 files changed

Lines changed: 19 additions & 3 deletions

File tree

404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
</style>
6868
</head>
6969
<body>
70-
<img src="img/logo.PNG">
70+
<img src="/img/logo.PNG">
7171
<h1>Page Not Found</h1>
7272
<p>This is not the web page you are looking for.</p>
7373
<br>

applications/app-markdowns/database-access.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Database Drivers
3131
* [queries](https://github.com/gmr/queries) - A wrapper of the psycopg2 library for interacting with PostgreSQL.
3232
* [txpostgres](http://txpostgres.readthedocs.org/) - Twisted based asynchronous driver for PostgreSQL.
3333
* [cx_Oracle](http://cx-oracle.sourceforge.net/) - The Oracle database connector for Python.
34+
* [pymssql](http://www.pymssql.org/) - A simple database interface to Microsoft SQL Server.
3435

3536
### NoSQL Databases
3637

@@ -77,3 +78,4 @@ The following people helped in creating the above content.
7778
* Contributors to <a href="https://github.com/vinta/awesome-python" target="_blank">awesome-python</a>
7879
* [Quasar Jarosz](https://github.com/quasarj)
7980
* [iury](https://github.com/IuryAlves)
81+
* [Ermogenes Palacio](https://github.com/ermogenes/)

applications/app-markdowns/devops.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ DevOps Tools
1515
* [Docker Compose](https://docs.docker.com/compose/) - Fast, isolated development environments using [Docker](https://www.docker.com/).
1616
* [Fabtools](https://github.com/ronnix/fabtools) - Tools for writing awesome Fabric files.
1717
* [gitapi](http://bitbucket.org/haard/gitapi) - Pure-Python API for git.
18+
* [GitPython](https://github.com/gitpython-developers/GitPython) - Python library used to interact with git repositories
1819
* [gunnery](https://github.com/gunnery/gunnery) - Multipurpose task execution tool for distributed systems with web-based interface.
1920
* [hgapi](http://bitbucket.org/haard/hgapi) - Pure-Python API for Mercurial.
2021
* [honcho](https://github.com/nickstenning/honcho) - A Python port of [Foreman](https://github.com/ddollar/foreman), a tool for managing Procfile-based applications.

applications/app-markdowns/embedded-python.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ Hardware
1313
* [PyUserInput](https://github.com/SavinaRoja/PyUserInput) - A module for cross-platform control of the mouse and keyboard.
1414
* [scapy](http://www.secdev.org/projects/scapy/) - A brilliant packet manipulation library.
1515
* [wifi](https://wifi.readthedocs.org/) - A Python library and command line tool for working with WiFi on Linux.
16+
* [Pingo](http://pingo.io) - Pingo provides a uniform API to program devices like the Raspberry Pi, pcDuino, Intel Galileo, etc.
1617

1718
Contributors
1819
============
1920

2021
The following people helped in creating the above content.
2122

22-
* Contributors to <a href="https://github.com/vinta/awesome-python" target="_blank">awesome-python</a>
23+
* Contributors to <a href="https://github.com/vinta/awesome-python" target="_blank">awesome-python</a>
24+
* <a href="https://github.com/leotada" target="_blank">leotada</a>

applications/app-markdowns/guis.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,13 @@ GUI
1818
* [Toga](https://github.com/pybee/toga) - A Python native, OS native GUI toolkit.
1919
* [urwid](http://urwid.org/) - A library for creating terminal GUI applications with strong support for widgets, events, rich colors, etc.
2020
* [wxPython](http://wxpython.org/) - A blending of the wxWidgets C++ class library with the Python.
21+
* [PyGObject](https://wiki.gnome.org/Projects/PyGObject) - Python Bindings for GLib/GObject/GIO/GTK+ (GTK+3)
22+
* [Flexx](https://github.com/zoofIO/flexx) - Flexx is a pure Python toolkit for creating GUI's, that uses web technology for its rendering.
2123

2224
Contributors
2325
============
2426

2527
The following people helped in creating the above content.
2628

27-
* Contributors to <a href="https://github.com/vinta/awesome-python" target="_blank">awesome-python</a>
29+
* Contributors to <a href="https://github.com/vinta/awesome-python" target="_blank">awesome-python</a>
30+
* <a href="https://github.com/leotada" target="_blank">leotada</a>

applications/app-markdowns/web-development.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ Authentication
112112
* [PyJWT](https://github.com/progrium/pyjwt) - Implementation of the JSON Web Token draft 01.
113113
* [python-jws](https://github.com/brianloveswords/python-jws) - Implementation of JSON Web Signatures draft 02.
114114
* [python-jwt](https://github.com/davedoesdev/python-jwt) - Module for generating and verifying JSON Web Tokens.
115+
* [django-rest-framework-jwt](https://github.com/GetBlimp/django-rest-framework-jwt) - JSON Web Token Authentication support for Django REST Framework
115116

116117
Geolocation
117118
-----------
@@ -416,6 +417,8 @@ Books/Resources
416417
* [Test-Driven Development with Python](http://chimera.labs.oreilly.com/books/1234000000754/)
417418
* [Lightweight Django](http://www.amazon.in/Lightweight-Django/dp/149194594X/)
418419
* [High Performance Django ](http://www.amazon.in/High-Performance-Django/dp/1508748128/)
420+
* [Tango with Django ](http://www.tangowithdjango.com/)
421+
* [Mastering Django](http://masteringdjango.com/)
419422

420423
Online courses/Videos
421424
---------------------
@@ -435,5 +438,10 @@ The following people helped in creating the above content.
435438

436439
* Contributors to <a href="https://github.com/vinta/awesome-python" target="_blank">awesome-python</a>
437440
* [Timothy Edmund Crosley](https://github.com/timothycrosley)
441+
<<<<<<< HEAD
438442
* [Eric Hideki](https://github.com/erichideki/)
443+
=======
444+
* [Sandip Bhagat](https://github.com/sandipbgt)
445+
* [Mohit Bajoria](https://github.com/mbj36)
446+
>>>>>>> upstream/develop
439447

0 commit comments

Comments
 (0)