Registration and login scriptThe perfect PHP login scriptLocal user registrationUser registration and loginRegistration and Login System for ApplicationPHP secure login scriptPython + MySQL Login system using Twilio APISecured registration scriptBasic object-oriented PHP login, logout, and registration scriptsPHP script security for new user registrationPDO login script

How can "mimic phobia" be cured or prevented?

How should I respond when I lied about my education and the company finds out through background check?

Store Credit Card Information in Password Manager?

Is there any references on the tensor product of presentable (1-)categories?

Removing files under particular conditions (number of files, file age)

What if a revenant (monster) gains fire resistance?

Closed-form expression for certain product

How do you respond to a colleague from another team when they're wrongly expecting that you'll help them?

Did Swami Prabhupada reject Advaita?

lightning-datatable row number error

Is the U.S. Code copyrighted by the Government?

How to indicate a cut out for a product window

Why is it that I can sometimes guess the next note?

What are the purposes of autoencoders?

If infinitesimal transformations commute why dont the generators of the Lorentz group commute?

Is this toilet slogan correct usage of the English language?

Electoral considerations aside, what are potential benefits, for the US, of policy changes proposed by the tweet recognizing Golan annexation?

Travelling outside the UK without a passport

The screen of my macbook suddenly broken down how can I do to recover

Is it safe to use olive oil to clean the ear wax?

How do I color the graph in datavisualization?

What was this official D&D 3.5e Lovecraft-flavored rulebook?

Has any country ever had 2 former presidents in jail simultaneously?

Open a doc from terminal, but not by its name



Registration and login script


The perfect PHP login scriptLocal user registrationUser registration and loginRegistration and Login System for ApplicationPHP secure login scriptPython + MySQL Login system using Twilio APISecured registration scriptBasic object-oriented PHP login, logout, and registration scriptsPHP script security for new user registrationPDO login script













1












$begingroup$


This is a registration and login script I have made in Python 3. It uses a MySQL database. In the future I might use it with my Blackjack game and add a row called money, but for now I would like to hear your opinion about this script since I have little to no experience in SQL.



import cymysql
from getpass import getpass


def get_user_info():
while True:
email = input("Input your Email address (max. 64 chars.): ")
password = getpass("Input a password (max. 64 chars.): ")
if len(email) < 64 and len(password) < 64:
return email, password


def register(cur, email, password):
cur.execute("INSERT INTO `users` (`Email`, `Password`) VALUES (%s, %s)", (email, password))
print("You've succesfully registered!")


def login(cur, email, password):
cur.execute("SELECT * FROM `users` WHERE `Email`=%s AND `Password`=%s LIMIT 1", (email, password))
rows = cur.fetchall()
if rows:
print("You've succesfully logged-in!")
else:
print("You failed logging-in!")


def check_account(cur, email):
cur.execute("SELECT * FROM `users` WHERE `Email`=%s LIMIT 1", (email,))
row = cur.fetchone()
return row


def main():
conn = cymysql.connect(
host='127.0.0.1',
user='root',
passwd='',
db='david'
)
cur = conn.cursor()
email = ''
password = ''
email, password = get_user_info()
check = check_account(cur, email)
if check:
login(cur, email, password)
else:
register(cur, email, password)
cur.close()
conn.close()


if __name__ == '__main__':
main()









share|improve this question











$endgroup$
















    1












    $begingroup$


    This is a registration and login script I have made in Python 3. It uses a MySQL database. In the future I might use it with my Blackjack game and add a row called money, but for now I would like to hear your opinion about this script since I have little to no experience in SQL.



    import cymysql
    from getpass import getpass


    def get_user_info():
    while True:
    email = input("Input your Email address (max. 64 chars.): ")
    password = getpass("Input a password (max. 64 chars.): ")
    if len(email) < 64 and len(password) < 64:
    return email, password


    def register(cur, email, password):
    cur.execute("INSERT INTO `users` (`Email`, `Password`) VALUES (%s, %s)", (email, password))
    print("You've succesfully registered!")


    def login(cur, email, password):
    cur.execute("SELECT * FROM `users` WHERE `Email`=%s AND `Password`=%s LIMIT 1", (email, password))
    rows = cur.fetchall()
    if rows:
    print("You've succesfully logged-in!")
    else:
    print("You failed logging-in!")


    def check_account(cur, email):
    cur.execute("SELECT * FROM `users` WHERE `Email`=%s LIMIT 1", (email,))
    row = cur.fetchone()
    return row


    def main():
    conn = cymysql.connect(
    host='127.0.0.1',
    user='root',
    passwd='',
    db='david'
    )
    cur = conn.cursor()
    email = ''
    password = ''
    email, password = get_user_info()
    check = check_account(cur, email)
    if check:
    login(cur, email, password)
    else:
    register(cur, email, password)
    cur.close()
    conn.close()


    if __name__ == '__main__':
    main()









    share|improve this question











    $endgroup$














      1












      1








      1


      1



      $begingroup$


      This is a registration and login script I have made in Python 3. It uses a MySQL database. In the future I might use it with my Blackjack game and add a row called money, but for now I would like to hear your opinion about this script since I have little to no experience in SQL.



      import cymysql
      from getpass import getpass


      def get_user_info():
      while True:
      email = input("Input your Email address (max. 64 chars.): ")
      password = getpass("Input a password (max. 64 chars.): ")
      if len(email) < 64 and len(password) < 64:
      return email, password


      def register(cur, email, password):
      cur.execute("INSERT INTO `users` (`Email`, `Password`) VALUES (%s, %s)", (email, password))
      print("You've succesfully registered!")


      def login(cur, email, password):
      cur.execute("SELECT * FROM `users` WHERE `Email`=%s AND `Password`=%s LIMIT 1", (email, password))
      rows = cur.fetchall()
      if rows:
      print("You've succesfully logged-in!")
      else:
      print("You failed logging-in!")


      def check_account(cur, email):
      cur.execute("SELECT * FROM `users` WHERE `Email`=%s LIMIT 1", (email,))
      row = cur.fetchone()
      return row


      def main():
      conn = cymysql.connect(
      host='127.0.0.1',
      user='root',
      passwd='',
      db='david'
      )
      cur = conn.cursor()
      email = ''
      password = ''
      email, password = get_user_info()
      check = check_account(cur, email)
      if check:
      login(cur, email, password)
      else:
      register(cur, email, password)
      cur.close()
      conn.close()


      if __name__ == '__main__':
      main()









      share|improve this question











      $endgroup$




      This is a registration and login script I have made in Python 3. It uses a MySQL database. In the future I might use it with my Blackjack game and add a row called money, but for now I would like to hear your opinion about this script since I have little to no experience in SQL.



      import cymysql
      from getpass import getpass


      def get_user_info():
      while True:
      email = input("Input your Email address (max. 64 chars.): ")
      password = getpass("Input a password (max. 64 chars.): ")
      if len(email) < 64 and len(password) < 64:
      return email, password


      def register(cur, email, password):
      cur.execute("INSERT INTO `users` (`Email`, `Password`) VALUES (%s, %s)", (email, password))
      print("You've succesfully registered!")


      def login(cur, email, password):
      cur.execute("SELECT * FROM `users` WHERE `Email`=%s AND `Password`=%s LIMIT 1", (email, password))
      rows = cur.fetchall()
      if rows:
      print("You've succesfully logged-in!")
      else:
      print("You failed logging-in!")


      def check_account(cur, email):
      cur.execute("SELECT * FROM `users` WHERE `Email`=%s LIMIT 1", (email,))
      row = cur.fetchone()
      return row


      def main():
      conn = cymysql.connect(
      host='127.0.0.1',
      user='root',
      passwd='',
      db='david'
      )
      cur = conn.cursor()
      email = ''
      password = ''
      email, password = get_user_info()
      check = check_account(cur, email)
      if check:
      login(cur, email, password)
      else:
      register(cur, email, password)
      cur.close()
      conn.close()


      if __name__ == '__main__':
      main()






      python python-3.x sql mysql






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 4 hours ago









      esote

      2,83111038




      2,83111038










      asked 5 hours ago









      Maria LauraMaria Laura

      914




      914




















          1 Answer
          1






          active

          oldest

          votes


















          2












          $begingroup$


          1. cymysql.connect is a context manager and so you should use it in a with statement.


          2. conn.cursor isn't a context manager. Which is very fishy, even more so that the original version of cymysql, pymysql, is.

          3. Seperate SQL interactions from UI interactions. This is as multiple parts of the UI may need to use the same SQL interactions, however since they're mangled, it'll lead to code duplication or errors in your UI.

          4. You don't need to do email = '', if you want to tell people it's a string then you can do email: str. A better thing to do however is use typing and make your code fully typed.

          5. You may want to verify that the email is a valid email address. It doesn't look like your SQL does that, but I don't know enough about it.

          import cymysql
          from getpass import getpass


          def get_user_info():
          while True:
          email = input("Input your Email address (max. 64 chars.): ")
          password = getpass("Input a password (max. 64 chars.): ")
          if len(email) < 64 and len(password) < 64:
          return email, password


          def register(cur, email, password):
          cur.execute("INSERT INTO `users` (`Email`, `Password`) VALUES (%s, %s)", (email, password))


          def login(cur, email, password):
          cur.execute("SELECT * FROM `users` WHERE `Email`=%s AND `Password`=%s LIMIT 1", (email, password))
          return bool(cur.fetchall())


          def check_account(cur, email):
          cur.execute("SELECT * FROM `users` WHERE `Email`=%s LIMIT 1", (email,))
          return bool(cur.fetchone())


          def main():
          conn = cymysql.connect(
          host='127.0.0.1',
          user='root',
          passwd='',
          db='david'
          )
          with conn:
          cur = conn.cursor()
          email, password = get_user_info()
          check = check_account(cur, email)
          if check:
          loggedin = login(cur, email, password)
          if loggedin:
          print("You've succesfully logged-in!")
          else:
          print("You failed logging-in!")
          else:
          register(cur, email, password)
          print("You've succesfully registered!")
          cur.close()


          if __name__ == '__main__':
          main()





          share|improve this answer









          $endgroup$












          • $begingroup$
            Hey! Thanks for the answer, but in my original script I have conn.close() at the end of main(). Should I use it in the updated script too?
            $endgroup$
            – Maria Laura
            3 hours ago










          • $begingroup$
            @MariaLaura You're not guarantee to reach the conn.close() - If I raise a keyboard interrupt, or kill the script does conn.close() run your way?
            $endgroup$
            – Peilonrayz
            3 hours ago










          Your Answer





          StackExchange.ifUsing("editor", function ()
          return StackExchange.using("mathjaxEditing", function ()
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
          );
          );
          , "mathjax-editing");

          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "196"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f216065%2fregistration-and-login-script%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2












          $begingroup$


          1. cymysql.connect is a context manager and so you should use it in a with statement.


          2. conn.cursor isn't a context manager. Which is very fishy, even more so that the original version of cymysql, pymysql, is.

          3. Seperate SQL interactions from UI interactions. This is as multiple parts of the UI may need to use the same SQL interactions, however since they're mangled, it'll lead to code duplication or errors in your UI.

          4. You don't need to do email = '', if you want to tell people it's a string then you can do email: str. A better thing to do however is use typing and make your code fully typed.

          5. You may want to verify that the email is a valid email address. It doesn't look like your SQL does that, but I don't know enough about it.

          import cymysql
          from getpass import getpass


          def get_user_info():
          while True:
          email = input("Input your Email address (max. 64 chars.): ")
          password = getpass("Input a password (max. 64 chars.): ")
          if len(email) < 64 and len(password) < 64:
          return email, password


          def register(cur, email, password):
          cur.execute("INSERT INTO `users` (`Email`, `Password`) VALUES (%s, %s)", (email, password))


          def login(cur, email, password):
          cur.execute("SELECT * FROM `users` WHERE `Email`=%s AND `Password`=%s LIMIT 1", (email, password))
          return bool(cur.fetchall())


          def check_account(cur, email):
          cur.execute("SELECT * FROM `users` WHERE `Email`=%s LIMIT 1", (email,))
          return bool(cur.fetchone())


          def main():
          conn = cymysql.connect(
          host='127.0.0.1',
          user='root',
          passwd='',
          db='david'
          )
          with conn:
          cur = conn.cursor()
          email, password = get_user_info()
          check = check_account(cur, email)
          if check:
          loggedin = login(cur, email, password)
          if loggedin:
          print("You've succesfully logged-in!")
          else:
          print("You failed logging-in!")
          else:
          register(cur, email, password)
          print("You've succesfully registered!")
          cur.close()


          if __name__ == '__main__':
          main()





          share|improve this answer









          $endgroup$












          • $begingroup$
            Hey! Thanks for the answer, but in my original script I have conn.close() at the end of main(). Should I use it in the updated script too?
            $endgroup$
            – Maria Laura
            3 hours ago










          • $begingroup$
            @MariaLaura You're not guarantee to reach the conn.close() - If I raise a keyboard interrupt, or kill the script does conn.close() run your way?
            $endgroup$
            – Peilonrayz
            3 hours ago















          2












          $begingroup$


          1. cymysql.connect is a context manager and so you should use it in a with statement.


          2. conn.cursor isn't a context manager. Which is very fishy, even more so that the original version of cymysql, pymysql, is.

          3. Seperate SQL interactions from UI interactions. This is as multiple parts of the UI may need to use the same SQL interactions, however since they're mangled, it'll lead to code duplication or errors in your UI.

          4. You don't need to do email = '', if you want to tell people it's a string then you can do email: str. A better thing to do however is use typing and make your code fully typed.

          5. You may want to verify that the email is a valid email address. It doesn't look like your SQL does that, but I don't know enough about it.

          import cymysql
          from getpass import getpass


          def get_user_info():
          while True:
          email = input("Input your Email address (max. 64 chars.): ")
          password = getpass("Input a password (max. 64 chars.): ")
          if len(email) < 64 and len(password) < 64:
          return email, password


          def register(cur, email, password):
          cur.execute("INSERT INTO `users` (`Email`, `Password`) VALUES (%s, %s)", (email, password))


          def login(cur, email, password):
          cur.execute("SELECT * FROM `users` WHERE `Email`=%s AND `Password`=%s LIMIT 1", (email, password))
          return bool(cur.fetchall())


          def check_account(cur, email):
          cur.execute("SELECT * FROM `users` WHERE `Email`=%s LIMIT 1", (email,))
          return bool(cur.fetchone())


          def main():
          conn = cymysql.connect(
          host='127.0.0.1',
          user='root',
          passwd='',
          db='david'
          )
          with conn:
          cur = conn.cursor()
          email, password = get_user_info()
          check = check_account(cur, email)
          if check:
          loggedin = login(cur, email, password)
          if loggedin:
          print("You've succesfully logged-in!")
          else:
          print("You failed logging-in!")
          else:
          register(cur, email, password)
          print("You've succesfully registered!")
          cur.close()


          if __name__ == '__main__':
          main()





          share|improve this answer









          $endgroup$












          • $begingroup$
            Hey! Thanks for the answer, but in my original script I have conn.close() at the end of main(). Should I use it in the updated script too?
            $endgroup$
            – Maria Laura
            3 hours ago










          • $begingroup$
            @MariaLaura You're not guarantee to reach the conn.close() - If I raise a keyboard interrupt, or kill the script does conn.close() run your way?
            $endgroup$
            – Peilonrayz
            3 hours ago













          2












          2








          2





          $begingroup$


          1. cymysql.connect is a context manager and so you should use it in a with statement.


          2. conn.cursor isn't a context manager. Which is very fishy, even more so that the original version of cymysql, pymysql, is.

          3. Seperate SQL interactions from UI interactions. This is as multiple parts of the UI may need to use the same SQL interactions, however since they're mangled, it'll lead to code duplication or errors in your UI.

          4. You don't need to do email = '', if you want to tell people it's a string then you can do email: str. A better thing to do however is use typing and make your code fully typed.

          5. You may want to verify that the email is a valid email address. It doesn't look like your SQL does that, but I don't know enough about it.

          import cymysql
          from getpass import getpass


          def get_user_info():
          while True:
          email = input("Input your Email address (max. 64 chars.): ")
          password = getpass("Input a password (max. 64 chars.): ")
          if len(email) < 64 and len(password) < 64:
          return email, password


          def register(cur, email, password):
          cur.execute("INSERT INTO `users` (`Email`, `Password`) VALUES (%s, %s)", (email, password))


          def login(cur, email, password):
          cur.execute("SELECT * FROM `users` WHERE `Email`=%s AND `Password`=%s LIMIT 1", (email, password))
          return bool(cur.fetchall())


          def check_account(cur, email):
          cur.execute("SELECT * FROM `users` WHERE `Email`=%s LIMIT 1", (email,))
          return bool(cur.fetchone())


          def main():
          conn = cymysql.connect(
          host='127.0.0.1',
          user='root',
          passwd='',
          db='david'
          )
          with conn:
          cur = conn.cursor()
          email, password = get_user_info()
          check = check_account(cur, email)
          if check:
          loggedin = login(cur, email, password)
          if loggedin:
          print("You've succesfully logged-in!")
          else:
          print("You failed logging-in!")
          else:
          register(cur, email, password)
          print("You've succesfully registered!")
          cur.close()


          if __name__ == '__main__':
          main()





          share|improve this answer









          $endgroup$




          1. cymysql.connect is a context manager and so you should use it in a with statement.


          2. conn.cursor isn't a context manager. Which is very fishy, even more so that the original version of cymysql, pymysql, is.

          3. Seperate SQL interactions from UI interactions. This is as multiple parts of the UI may need to use the same SQL interactions, however since they're mangled, it'll lead to code duplication or errors in your UI.

          4. You don't need to do email = '', if you want to tell people it's a string then you can do email: str. A better thing to do however is use typing and make your code fully typed.

          5. You may want to verify that the email is a valid email address. It doesn't look like your SQL does that, but I don't know enough about it.

          import cymysql
          from getpass import getpass


          def get_user_info():
          while True:
          email = input("Input your Email address (max. 64 chars.): ")
          password = getpass("Input a password (max. 64 chars.): ")
          if len(email) < 64 and len(password) < 64:
          return email, password


          def register(cur, email, password):
          cur.execute("INSERT INTO `users` (`Email`, `Password`) VALUES (%s, %s)", (email, password))


          def login(cur, email, password):
          cur.execute("SELECT * FROM `users` WHERE `Email`=%s AND `Password`=%s LIMIT 1", (email, password))
          return bool(cur.fetchall())


          def check_account(cur, email):
          cur.execute("SELECT * FROM `users` WHERE `Email`=%s LIMIT 1", (email,))
          return bool(cur.fetchone())


          def main():
          conn = cymysql.connect(
          host='127.0.0.1',
          user='root',
          passwd='',
          db='david'
          )
          with conn:
          cur = conn.cursor()
          email, password = get_user_info()
          check = check_account(cur, email)
          if check:
          loggedin = login(cur, email, password)
          if loggedin:
          print("You've succesfully logged-in!")
          else:
          print("You failed logging-in!")
          else:
          register(cur, email, password)
          print("You've succesfully registered!")
          cur.close()


          if __name__ == '__main__':
          main()






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 4 hours ago









          PeilonrayzPeilonrayz

          26.2k338110




          26.2k338110











          • $begingroup$
            Hey! Thanks for the answer, but in my original script I have conn.close() at the end of main(). Should I use it in the updated script too?
            $endgroup$
            – Maria Laura
            3 hours ago










          • $begingroup$
            @MariaLaura You're not guarantee to reach the conn.close() - If I raise a keyboard interrupt, or kill the script does conn.close() run your way?
            $endgroup$
            – Peilonrayz
            3 hours ago
















          • $begingroup$
            Hey! Thanks for the answer, but in my original script I have conn.close() at the end of main(). Should I use it in the updated script too?
            $endgroup$
            – Maria Laura
            3 hours ago










          • $begingroup$
            @MariaLaura You're not guarantee to reach the conn.close() - If I raise a keyboard interrupt, or kill the script does conn.close() run your way?
            $endgroup$
            – Peilonrayz
            3 hours ago















          $begingroup$
          Hey! Thanks for the answer, but in my original script I have conn.close() at the end of main(). Should I use it in the updated script too?
          $endgroup$
          – Maria Laura
          3 hours ago




          $begingroup$
          Hey! Thanks for the answer, but in my original script I have conn.close() at the end of main(). Should I use it in the updated script too?
          $endgroup$
          – Maria Laura
          3 hours ago












          $begingroup$
          @MariaLaura You're not guarantee to reach the conn.close() - If I raise a keyboard interrupt, or kill the script does conn.close() run your way?
          $endgroup$
          – Peilonrayz
          3 hours ago




          $begingroup$
          @MariaLaura You're not guarantee to reach the conn.close() - If I raise a keyboard interrupt, or kill the script does conn.close() run your way?
          $endgroup$
          – Peilonrayz
          3 hours ago

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Code Review Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f216065%2fregistration-and-login-script%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Bett Inhaltsverzeichnis Geschichte | Bettformen | Bettgrößen | Andere Bezeichnungen | Bettenmangel | Betten in der bildenden Kunst | Schlafmedizinische Gesichtspunkte | Siehe auch | Literatur | Weblinks | Einzelnachweise | NavigationsmenüBett, Bettstatt, BettstelleCommons: BettBabybetten: Anwendung, Ausstattungsmerkmale und VergleichskriterienWasserbetten. Vorurteile im TestHapfnNursch10.1007/s11818-012-0584-74006250-8AKS4329276-8

          Luksemburg Sisukord Nimi | Asend | Loodus | Riigikord | Haldusjaotus | Rahvastik | Riigikaitse | Majandus | Taristu | Ajalugu | Eesti ja Luksemburgi suhted | Haridus | Kultuur | Vaata ka | Viited | Välislingid | Navigeerimismenüü50° N, 6° EÜlevaade Luksemburgi kaitsealadest.Luksemburgi rahvaarv. Statistikaamet.World Bank'i andmebaasÜlevaade Luksemburgi loodusest.Ülevaade Luksemburgi metsadest.Guy Colling. "Red List of the Vascular Plants of Luxembourg." Travaux scientifiques du Musée national d’histoire naturelle Luxembourg. 2005.Luxembourg’s biodiversity at risk.Maailma kahepaiksete andmebaas.Denis Lepage. "Luxembourg." Avibase.Ülevaade temperatuuridest. Luksemburgi meteoroloogiateenistus.Ülevaade Luksemburgist. Euroopa Liidu esinduse koduleht.Système politique. TerritoireÜlevaade Luksemburgi rahvastikust. Luksemburgi statistikaamet.Luksemburgi rahvastik. Luksemburgi statistikaamet.The World FactbookMonique Borsenberger, Paul Dickes. "Religions au Luxembourg. Quelle évolution entre 1999-2008". Luksemburgi statistikaamet. 2011.Luksemburgi peapiiskopkond. Catholic-Hierarchy.Luksemburgi armee koduleht.Luksemburgi armee relvastus.Eesti Välisministeerium.Luksemburgi rahvastik. Luksemburgi statistikaamet.Luksemburgi Eesti Seltsi koduleht.Helen Eelrand. "Raadio, mis muutis maailma." Eesti Päevaleht. 13. märts 2004.Ülevaade Luksemburgi haridussüsteemist.Ülevaade Luksemburgi keskkoolidest.Luksemburgr

          Johann Wolfgang von Goethe Sisukord Elukäik | Looming | Tunnustus | Teosed | Teosed eesti keeles | Kirjandus | Välislingid | Viited | NavigeerimismenüüJohann Wolfgang von GoetheGoethe sajanda surmapäeva puhulGoethe — filosoof ja loodusuurija"Rahuldamatus: "Faustist" ja Eestist""Romaaniülikool: J. W. Goethe "Noore Wertheri kannatused""SurimaskVappJohann Wolfgang von Goether"Türklannast „Luther“ reformib islamit"Arhiiviversioon